diff --git a/sample_files/compare.expected b/sample_files/compare.expected index cd4c401e6..baf586488 100644 --- a/sample_files/compare.expected +++ b/sample_files/compare.expected @@ -278,7 +278,7 @@ sample_files/text_1.txt sample_files/text_2.txt f8f81946284fc625ac8e9ae441f31e6d - sample_files/todomvc_1.gleam sample_files/todomvc_2.gleam -9fe64f7d77ad99095ac29357554f3d71 - +6b3b8c9f1e813617819b97144cc5cc4a - sample_files/toml_1.toml sample_files/toml_2.toml c331bdb54c00b0a5b5a622dbd250042a - diff --git a/sample_files/todomvc_1.gleam b/sample_files/todomvc_1.gleam index 916b36975..a8fcb9fe1 100644 --- a/sample_files/todomvc_1.gleam +++ b/sample_files/todomvc_1.gleam @@ -19,7 +19,7 @@ pub fn main() { string.concat(["Listening on localhost:", int.to_string(port), " ✨"]) |> log.info - assert Ok(_) = elli.become(web, on_port: port) + let assert Ok(_) = elli.become(web, on_port: port) } pub fn start_database_connection_pool() -> pgo.Connection { diff --git a/sample_files/todomvc_2.gleam b/sample_files/todomvc_2.gleam index 45f1b1af6..c56aed9b2 100644 --- a/sample_files/todomvc_2.gleam +++ b/sample_files/todomvc_2.gleam @@ -20,7 +20,7 @@ pub fn main() { string.concat(["Listening on localhost:", int.to_string(port), " ✨"]) log.info(log_string) - assert Ok(_) = elli.become(web, on_port: port) + let assert Ok(_) = elli.become(web, on_port: port) } pub fn start_database_connection_pool() -> pgo.Connection { diff --git a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md new file mode 100644 index 000000000..e1954070e --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/.github/ISSUE_TEMPLATE/issue.md @@ -0,0 +1,12 @@ +--- +name: Issue +about: A problem or suggestion +title: '' +labels: '' +assignees: '' + +--- + +> [!IMPORTANT] +> Please ensure you are using the latest commit in this repo. +> Older versions are not supported. diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml index a7312555f..1c99b18ab 100644 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml +++ b/vendored_parsers/tree-sitter-gleam/.github/workflows/ci.yml @@ -5,19 +5,21 @@ on: [push, pull_request] jobs: test: name: Test - runs-on: ubuntu-latest - + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - macos-latest + - ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v2 - with: - node-version: "14.x" + uses: actions/setup-node@v4 - name: Cache npm dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -42,15 +44,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v2 - with: - node-version: "14.x" + uses: actions/setup-node@v4 - name: Cache npm dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml index 59bb5d0b7..dd357f68d 100644 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml +++ b/vendored_parsers/tree-sitter-gleam/.github/workflows/generate-parser.yml @@ -13,15 +13,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v2 - with: - node-version: "14.x" + uses: actions/setup-node@v4 - name: Cache npm dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml b/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml index 5c60a833a..dd7049e95 100644 --- a/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml +++ b/vendored_parsers/tree-sitter-gleam/.github/workflows/release.yml @@ -15,12 +15,10 @@ jobs: - ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Node - uses: actions/setup-node@v2 - with: - node-version: "14.x" + uses: actions/setup-node@v4 - name: Install npm dependencies run: npm ci diff --git a/vendored_parsers/tree-sitter-gleam/.gitignore b/vendored_parsers/tree-sitter-gleam/.gitignore index 02d0d2f2d..e18f95749 100644 --- a/vendored_parsers/tree-sitter-gleam/.gitignore +++ b/vendored_parsers/tree-sitter-gleam/.gitignore @@ -1,5 +1,6 @@ -node_modules -target -build *.wasm +build +gleam.so* log.html +node_modules +target diff --git a/vendored_parsers/tree-sitter-gleam/Cargo.lock b/vendored_parsers/tree-sitter-gleam/Cargo.lock index c42c3d15a..a246eee1b 100644 --- a/vendored_parsers/tree-sitter-gleam/Cargo.lock +++ b/vendored_parsers/tree-sitter-gleam/Cargo.lock @@ -4,30 +4,45 @@ version = 3 [[package]] name = "aho-corasick" -version = "0.7.18" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" dependencies = [ "memchr", ] [[package]] name = "cc" -version = "1.0.72" +version = "1.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" +checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" +dependencies = [ + "shlex", +] [[package]] name = "memchr" -version = "2.4.1" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "regex" -version = "1.5.4" +version = "1.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" dependencies = [ "aho-corasick", "memchr", @@ -36,24 +51,39 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.6.25" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "shlex" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "tree-sitter" -version = "0.20.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c36be3222512d85a112491ae0cc280a38076022414f00b64582da1b7565ffd82" +checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff" dependencies = [ "cc", "regex", + "regex-syntax", + "tree-sitter-language", ] [[package]] name = "tree-sitter-gleam" -version = "0.22.1" +version = "1.0.0" dependencies = [ "cc", "tree-sitter", + "tree-sitter-language", ] + +[[package]] +name = "tree-sitter-language" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57" diff --git a/vendored_parsers/tree-sitter-gleam/Cargo.toml b/vendored_parsers/tree-sitter-gleam/Cargo.toml index 239e83f21..0e5e6ed62 100644 --- a/vendored_parsers/tree-sitter-gleam/Cargo.toml +++ b/vendored_parsers/tree-sitter-gleam/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-gleam" description = "gleam grammar for the tree-sitter parsing library" -version = "0.22.1" +version = "1.0.0" keywords = ["incremental", "parsing", "gleam"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-gleam" @@ -20,7 +20,10 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20" +tree-sitter-language = "0.1.0" + +[dev-dependencies] +tree-sitter = "0.23" [build-dependencies] cc = "1.0" diff --git a/vendored_parsers/tree-sitter-gleam/README.md b/vendored_parsers/tree-sitter-gleam/README.md index 997efdc5f..e60dc78a1 100644 --- a/vendored_parsers/tree-sitter-gleam/README.md +++ b/vendored_parsers/tree-sitter-gleam/README.md @@ -37,6 +37,7 @@ Various Gotchas --------------- There are a few nodes in the generated AST that may be confusing at first: + - `type` :: A very ambiguous name, but this refers to a concrete type such as `List(#(String, Int))` - `type_name` :: Refers to essentially the left side of a type declaration and @@ -52,6 +53,7 @@ There are a few nodes in the generated AST that may be confusing at first: —there's no way for the parser to know. In this case, it will be parsed to `(function_call function: (field_access ...) ...)` , as I arbitrarily decided to always assume the code is accessing a field on a record. +- `constant_field_access` :: Recognizes when a reference to a remote function is used as a constant's value. Generally field accesses are indistinguishable from remote function invocations by the parser so `field_access` is the node name used for both (hence this misnomer). This is not a comprehensive list. If you find a node confusing, search for it in `grammar.js`, as it might have an explanatory comment. Either way, feel free @@ -66,13 +68,36 @@ To-do List [open an issue]: https://github.com/J3RN/tree-sitter-gleam/issues/new +Contributing +------------ + +1. Change files such as `grammar.js` and `queries/highlight.scm`. +2. The grammar needs to be generated from the `grammar.js` file by running `npm run generate`. +3. Add parser feature tests to the relevant file(s) in `test/corpus/`, or make a new one. +4. Run `npm run test` and fix any failing tests. + +Policies +-------- + +### Backwards-Compatibility Policy + +Per the conversation in [#55](https://github.com/gleam-lang/tree-sitter-gleam/pull/55), we have decided that from v0.28.0 forward, tree-sitter-gleam will maintain backwards compatibility with the previous two minor versions; meaning that each release will support three versions: +- 0.x.0 +- 0.x-1.* +- 0.x-2.* + +e.g. The v0.30.0 release of tree-sitter gleam will support the following version of the Gleam language: +- v0.30.0 +- v0.29.* +- v0.28.* + Style ----- To prevent headaches from stylistic differences, I request that you please follow these style suggestions. 🙏 -- Remove all non-mandatory trailing whitespace +- Remove all non-mandatory trailing whitespace. - Ensure a final newline is present at the end of all files (this is the default - in Vim, Emacs) -- Format JavaScript by running `npm run format` + in Vim, Emacs). +- Format JavaScript by running `npm run format`. diff --git a/vendored_parsers/tree-sitter-gleam/binding.gyp b/vendored_parsers/tree-sitter-gleam/binding.gyp index e8938abaa..c7841a89e 100644 --- a/vendored_parsers/tree-sitter-gleam/binding.gyp +++ b/vendored_parsers/tree-sitter-gleam/binding.gyp @@ -9,7 +9,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # If your language uses an external scanner, add it here. + "src/scanner.c" ], "cflags_c": [ "-std=c99", diff --git a/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs b/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs index c6061f099..2dd4a7adc 100644 --- a/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs +++ b/vendored_parsers/tree-sitter-gleam/bindings/rust/build.rs @@ -10,14 +10,9 @@ fn main() { let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); - // If your language uses an external scanner written in C, - // then include this block of code: - - /* let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ c_config.compile("parser"); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); diff --git a/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs index 094c8e98b..4de561c17 100644 --- a/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs +++ b/vendored_parsers/tree-sitter-gleam/bindings/rust/lib.rs @@ -1,13 +1,25 @@ -//! This crate provides gleam language support for the [tree-sitter][] parsing library. +//! This crate provides Gleam language support for the [tree-sitter][] parsing library. //! //! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` -//! let code = ""; -//! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(tree_sitter_gleam::language()).expect("Error loading gleam grammar"); +//! use tree_sitter::Parser; +//! +//! let code = r#" +//! import gleam/io +//! +//! pub fn main() { +//! io.println("hello, friend!") +//! } +//! "#; +//! let mut parser = Parser::new(); +//! let language = tree_sitter_gleam::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Gleam parser"); //! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html @@ -15,30 +27,28 @@ //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_gleam() -> Language; + fn tree_sitter_gleam() -> *const (); } -/// Get the tree-sitter [Language][] for this grammar. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_gleam() } -} +/// The tree-sitter [`LanguageFn`] for this grammar. +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_gleam) }; /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); -// Uncomment these to include any queries that this grammar contains +/// The syntax highlighting query for this language. +pub const HIGHLIGHT_QUERY: &'static str = include_str!("../../queries/highlights.scm"); + +// The locals tagging query for this language. +pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); +/// The symbol tagging query for this language. +pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); #[cfg(test)] mod tests { @@ -46,7 +56,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) - .expect("Error loading gleam language"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Gleam parser"); } } diff --git a/vendored_parsers/tree-sitter-gleam/grammar.js b/vendored_parsers/tree-sitter-gleam/grammar.js index f98479c6e..c0d5d0caa 100644 --- a/vendored_parsers/tree-sitter-gleam/grammar.js +++ b/vendored_parsers/tree-sitter-gleam/grammar.js @@ -4,7 +4,6 @@ module.exports = grammar({ name: "gleam", externals: ($) => [$.quoted_content], extras: ($) => [ - ";", NEWLINE, /\s/, $.module_comment, @@ -13,11 +12,6 @@ module.exports = grammar({ ], conflicts: ($) => [ [$._maybe_record_expression, $._maybe_tuple_expression], - [ - $._maybe_record_expression, - $._maybe_tuple_expression, - $.remote_type_identifier, - ], [ $._maybe_record_expression, $._maybe_tuple_expression, @@ -25,13 +19,16 @@ module.exports = grammar({ ], [$.case_subjects], [$.source_file], + [$._constant_value, $._case_clause_guard_unit], + [$.integer], + [$.echo], ], rules: { /* General rules */ source_file: ($) => - repeat(choice($.target_group, $._statement, $._expression_seq)), + repeat(choice($.target_group, $._module_statement, $._statement_seq)), - _statement: ($) => + _module_statement: ($) => choice( $.import, $.constant, @@ -39,7 +36,8 @@ module.exports = grammar({ $.external_function, $.function, $.type_definition, - $.type_alias + $.type_alias, + $.attribute ), /* Comments */ @@ -47,18 +45,43 @@ module.exports = grammar({ statement_comment: ($) => token(seq("///", /.*/)), comment: ($) => token(seq("//", /.*/)), - /* Target groups */ + /* Target groups + * DEPRECATED: This syntax was replaced with attributes in v0.30. + */ target_group: ($) => - seq("if", field("target", $.target), "{", repeat($._statement), "}"), + seq( + "if", + field("target", $.target), + "{", + repeat($._module_statement), + "}" + ), target: ($) => choice("erlang", "javascript"), + /* Attributes */ + attribute: ($) => + seq( + "@", + field("name", $.identifier), + optional(field("arguments", alias($._attribute_arguments, $.arguments))) + ), + + _attribute_arguments: ($) => + seq("(", series_of($.attribute_value, ","), ")"), + + attribute_value: ($) => + choice( + $._constant_value, + seq(field("label", $.label), ":", field("value", $._constant_value)) + ), + /* Import statements */ import: ($) => seq( "import", field("module", $.module), optional(seq(".", field("imports", $.unqualified_imports))), - optional(seq("as", field("alias", $.identifier))) + optional(seq("as", field("alias", choice($.identifier, $.discard)))) ), module: ($) => seq($._name, repeat(seq("/", $._name))), unqualified_imports: ($) => @@ -70,8 +93,13 @@ module.exports = grammar({ optional(seq("as", field("alias", $.identifier))) ), seq( + "type", field("name", $.type_identifier), optional(seq("as", field("alias", $.type_identifier))) + ), + seq( + field("name", $.constructor_name), + optional(seq("as", field("alias", $.constructor_name))) ) ), @@ -93,7 +121,9 @@ module.exports = grammar({ alias($.constant_tuple, $.tuple), alias($.constant_list, $.list), alias($._constant_bit_string, $.bit_string), - alias($.constant_record, $.record) + alias($.constant_record, $.record), + $.identifier, + alias($.constant_field_access, $.field_access) ), constant_tuple: ($) => seq("#", "(", optional(series_of($._constant_value, ",")), ")"), @@ -114,10 +144,17 @@ module.exports = grammar({ ")" ), constant_record_argument: ($) => - seq( - optional(seq(field("label", $.label), ":")), - field("value", $._constant_value) + choice( + seq( + optional(seq(field("label", $.label), ":")), + field("value", $._constant_value) + ), + seq(field("label", $.label), ":") ), + // This rule exists to parse remote function references which are generally + // indistinguishable from field accesses and so share an AST node. + constant_field_access: ($) => + seq(field("record", $.identifier), ".", field("field", $.label)), /* Special constant types */ // Versions of $._type, $._type_annotation, etc, that have constraints @@ -126,11 +163,29 @@ module.exports = grammar({ choice( $.type_hole, alias($.constant_tuple_type, $.tuple_type), + alias($.constant_function_type, $.function_type), alias($.constant_type, $.type) ), _constant_type_annotation: ($) => seq(":", field("type", $._constant_type)), constant_tuple_type: ($) => seq("#", "(", optional(series_of($._constant_type, ",")), ")"), + constant_function_type: ($) => + seq( + "fn", + optional( + field( + "parameter_types", + alias( + $.constant_function_parameter_types, + $.function_parameter_types + ) + ) + ), + "->", + field("return_type", $._constant_type) + ), + constant_function_parameter_types: ($) => + seq("(", optional(series_of($._constant_type, ",")), ")"), constant_type: ($) => seq( field("name", choice($.type_identifier, $.remote_type_identifier)), @@ -149,7 +204,15 @@ module.exports = grammar({ constant_type_argument: ($) => $._constant_type, external_type: ($) => - seq(optional($.visibility_modifier), "external", "type", $.type_name), + prec.right( + seq( + optional($.visibility_modifier), + // DEPRECATED: the external token was removed in v0.30. + optional("external"), + "type", + $.type_name + ) + ), /* External function */ external_function: ($) => @@ -189,15 +252,15 @@ module.exports = grammar({ /* Functions */ function: ($) => - seq( - optional($.visibility_modifier), - "fn", - field("name", $.identifier), - field("parameters", $.function_parameters), - optional(seq("->", field("return_type", $._type))), - "{", - field("body", alias($._expression_seq, $.function_body)), - "}" + prec.right( + seq( + optional($.visibility_modifier), + "fn", + field("name", $.identifier), + field("parameters", $.function_parameters), + optional(seq("->", field("return_type", $._type))), + optional(field("body", $.block)) + ) ), function_parameters: ($) => seq("(", optional(series_of($.function_parameter, ",")), ")"), @@ -217,36 +280,9 @@ module.exports = grammar({ _labeled_name_param: ($) => seq(field("label", $.label), field("name", $.identifier)), _name_param: ($) => field("name", $.identifier), - // This method diverges from the parser's `parse_expression_seq` somewhat. - // The parser considers all expressions after a `try` to be part of its AST - // node, namely the "then" section. Gleam code like this: - // - // try int_a = parse(a) - // try int_b = parse(b) - // Ok(int_a + int_b) - // - // is parsed as: - // - // (try - // pattern: (pattern) - // value: (call (identifier)) - // then: (try - // pattern: (pattern) - // value: (call (identifier)) - // then: (record (...)))) - // - // This makes sense for the parser, but (IMO) would be more confusing for - // users and tooling which don't think about `try`s as having a "then". Thus, - // `try`s are essentially treated the same as any other expression. - _expression_seq: ($) => repeat1(choice($._expression, $.try)), - try: ($) => - seq( - "try", - field("pattern", $._pattern), - optional($._type_annotation), - "=", - field("value", $._expression) - ), + _statement_seq: ($) => repeat1($._statement), + _statement: ($) => + choice($._expression, $.let, $.let_assert, $.use, $.assert), _expression: ($) => choice($._expression_unit, $.binary_expression), binary_expression: ($) => choice( @@ -262,7 +298,13 @@ module.exports = grammar({ binaryExpr(prec.left, 4, ">=", $._expression), binaryExpr(prec.left, 4, ">.", $._expression), binaryExpr(prec.left, 4, ">=.", $._expression), - binaryExpr(prec.left, 5, "|>", $._expression), + binaryExpr( + prec.left, + 5, + "|>", + $._expression, + choice($.pipeline_echo, $._expression) + ), binaryExpr(prec.left, 6, "+", $._expression), binaryExpr(prec.left, 6, "+.", $._expression), binaryExpr(prec.left, 6, "-", $._expression), @@ -271,7 +313,8 @@ module.exports = grammar({ binaryExpr(prec.left, 7, "*.", $._expression), binaryExpr(prec.left, 7, "/", $._expression), binaryExpr(prec.left, 7, "/.", $._expression), - binaryExpr(prec.left, 7, "%", $._expression) + binaryExpr(prec.left, 7, "%", $._expression), + binaryExpr(prec.left, 7, "<>", $._expression) ), // The way that this function is written in the Gleam parser is essentially // incompatible with tree-sitter. It first parses some base expression, @@ -291,15 +334,16 @@ module.exports = grammar({ $.record, $.identifier, $.todo, + $.panic, $.tuple, + $.echo, $.list, alias($._expression_bit_string, $.bit_string), $.anonymous_function, - $.expression_group, + $.block, $.case, - $.let, - $.assert, - $.negation, + $.boolean_negation, + $.integer_negation, $.record_update, $.tuple_access, $.field_access, @@ -311,7 +355,32 @@ module.exports = grammar({ optional(field("arguments", $.arguments)) ), todo: ($) => - seq("todo", optional(seq("(", field("message", $.string), ")"))), + prec.left( + seq( + "todo", + optional( + choice( + // DEPRECATED: The 'as' syntax was introduced in v0.30. + seq("(", field("message", $.string), ")"), + seq("as", field("message", $._expression)) + ) + ) + ) + ), + panic: ($) => + prec.left( + seq( + "panic", + optional( + choice( + seq("(", field("message", $.string), ")"), + seq("as", field("message", $._expression)) + ) + ) + ) + ), + pipeline_echo: (_$) => prec.left("echo"), + echo: ($) => seq("echo", $._expression), tuple: ($) => seq("#", "(", optional(series_of($._expression, ",")), ")"), list: ($) => seq( @@ -335,9 +404,7 @@ module.exports = grammar({ alias($.anonymous_function_parameters, $.function_parameters) ), optional(seq("->", field("return_type", $._type))), - "{", - field("body", alias($._expression_seq, $.function_body)), - "}" + field("body", $.block) ), anonymous_function_parameters: ($) => seq( @@ -355,13 +422,13 @@ module.exports = grammar({ choice($._discard_param, $._name_param), optional($._type_annotation) ), - expression_group: ($) => seq("{", $._expression_seq, "}"), + block: ($) => seq("{", optional($._statement_seq), "}"), case: ($) => seq( "case", field("subjects", $.case_subjects), "{", - field("clauses", $.case_clauses), + optional(field("clauses", $.case_clauses)), "}" ), case_subjects: ($) => seq(series_of($._expression, ",")), @@ -385,7 +452,8 @@ module.exports = grammar({ _case_clause_guard_expression: ($) => choice( $._case_clause_guard_unit, - alias($._case_clause_guard_binary_expression, $.binary_expression) + alias($._case_clause_guard_binary_expression, $.binary_expression), + $.boolean_negation ), _case_clause_guard_binary_expression: ($) => choice( @@ -400,7 +468,16 @@ module.exports = grammar({ binaryExpr(prec.left, 4, ">", $._case_clause_guard_expression), binaryExpr(prec.left, 4, ">=", $._case_clause_guard_expression), binaryExpr(prec.left, 4, ">.", $._case_clause_guard_expression), - binaryExpr(prec.left, 4, ">=.", $._case_clause_guard_expression) + binaryExpr(prec.left, 4, ">=.", $._case_clause_guard_expression), + binaryExpr(prec.left, 5, "+", $._case_clause_guard_expression), + binaryExpr(prec.left, 5, "+.", $._case_clause_guard_expression), + binaryExpr(prec.left, 5, "-", $._case_clause_guard_expression), + binaryExpr(prec.left, 5, "-.", $._case_clause_guard_expression), + binaryExpr(prec.left, 6, "*", $._case_clause_guard_expression), + binaryExpr(prec.left, 6, "*.", $._case_clause_guard_expression), + binaryExpr(prec.left, 6, "/", $._case_clause_guard_expression), + binaryExpr(prec.left, 6, "/.", $._case_clause_guard_expression), + binaryExpr(prec.left, 6, "%", $._case_clause_guard_expression) ), _case_clause_guard_unit: ($) => choice( @@ -411,9 +488,31 @@ module.exports = grammar({ ), _case_clause_tuple_access: ($) => seq(field("tuple", $.identifier), ".", field("index", $.integer)), + let_assert: ($) => + seq( + "let", + "assert", + $._assignment, + optional(seq("as", field("message", $._expression))) + ), + assert: ($) => + seq( + "assert", + field("value", $._expression), + optional(seq("as", field("message", $._expression))) + ), let: ($) => seq("let", $._assignment), - assert: ($) => seq("assert", $._assignment), - negation: ($) => seq("!", $._expression_unit), + use: ($) => + seq( + "use", + optional(field("assignments", $.use_assignments)), + "<-", + field("value", $._expression) + ), + use_assignments: ($) => series_of($.use_assignment, ","), + use_assignment: ($) => seq($._pattern, optional($._type_annotation)), + boolean_negation: ($) => seq("!", $._expression_unit), + integer_negation: ($) => seq("-", $._expression_unit), _assignment: ($) => seq( field("pattern", $._pattern), @@ -436,7 +535,10 @@ module.exports = grammar({ ), record_update_arguments: ($) => series_of($.record_update_argument, ","), record_update_argument: ($) => - seq(field("label", $.label), ":", field("value", $._expression)), + choice( + seq(field("label", $.label), ":", field("value", $._expression)), + seq(field("label", $.label), ":") + ), // As with other AST nodes in this section, `_maybe_record_expression`, // `_maybe_tuple_expression`, and `_maybe_function_expresssion` have no // corollaries in the Gleam parser. These anonymous AST node denote any @@ -450,7 +552,7 @@ module.exports = grammar({ $.identifier, $.function_call, $.tuple, - $.expression_group, + $.block, $.case, $.field_access, $.tuple_access @@ -468,7 +570,7 @@ module.exports = grammar({ $.record, $.identifier, $.function_call, - $.expression_group, + $.block, $.case, $.record_update, $.field_access, @@ -494,7 +596,7 @@ module.exports = grammar({ choice( $.identifier, $.anonymous_function, - $.expression_group, + $.block, $.case, $.tuple_access, $.field_access, @@ -504,9 +606,12 @@ module.exports = grammar({ // record arguments, hence the ambiguous name. arguments: ($) => seq("(", optional(series_of($.argument, ",")), ")"), argument: ($) => - seq( - optional(seq(field("label", $.label), ":")), - field("value", choice($.hole, $._expression)) + choice( + seq( + optional(seq(field("label", $.label), ":")), + field("value", choice($.hole, $._expression)) + ), + seq(field("label", $.label), ":") ), hole: ($) => $._discard_name, function_call: ($) => @@ -514,19 +619,27 @@ module.exports = grammar({ field("function", $._maybe_function_expression), field("arguments", $.arguments) ), + _pattern_expression: ($) => + choice( + $.identifier, + $.discard, + $.record_pattern, + $.string, + $.integer, + $.float, + $.tuple_pattern, + alias($._pattern_bit_string, $.bit_string_pattern), + $.list_pattern, + alias($._pattern_binary_expression, $.binary_expression) + ), + _pattern_binary_expression: ($) => + choice( + binaryExpr(prec.left, 1, "<>", $._pattern_expression), + binaryExpr(prec.left, 1, "as", $.string, $.identifier) + ), _pattern: ($) => seq( - choice( - $.identifier, - $.discard, - $.record_pattern, - $.string, - $.integer, - $.float, - $.tuple_pattern, - alias($._pattern_bit_string, $.bit_string_pattern), - $.list_pattern - ), + $._pattern_expression, optional(field("assign", seq("as", $.identifier))) ), record_pattern: ($) => @@ -542,9 +655,12 @@ module.exports = grammar({ ")" ), record_pattern_argument: ($) => - seq( - optional(seq(field("label", $.label), ":")), - field("pattern", $._pattern) + choice( + seq( + optional(seq(field("label", $.label), ":")), + field("pattern", $._pattern) + ), + seq(field("label", $.label), ":") ), pattern_spread: ($) => seq("..", optional(",")), tuple_pattern: ($) => @@ -586,6 +702,7 @@ module.exports = grammar({ data_constructors: ($) => repeat1($.data_constructor), data_constructor: ($) => seq( + optional($.attribute), field("name", $.constructor_name), optional(field("arguments", $.data_constructor_arguments)) ), @@ -612,8 +729,12 @@ module.exports = grammar({ repeat(choice($.escape_sequence, $.quoted_content)), token.immediate('"') ), - escape_sequence: ($) => token.immediate(/\\[efnrt\"\\]/), - float: ($) => /-?[0-9_]+\.[0-9_]*/, + escape_sequence: ($) => + choice( + token.immediate(/\\[efnrt\"\\]/), + token.immediate(/\\u\{[0-9a-fA-F]{1,6}\}/) + ), + float: ($) => /-?[0-9_]+\.[0-9_]*(e-?[0-9_]+)?/, integer: ($) => seq(optional("-"), choice($._hex, $._decimal, $._octal, $._binary)), _hex: ($) => /0[xX][0-9a-fA-F_]+/, @@ -769,9 +890,13 @@ function series_of(rule, separator) { // A binary expression with a left-hand side, infix operator, and then right-hand-side // https://github.com/elixir-lang/tree-sitter-elixir/blob/de20391afe5cb03ef1e8a8e43167e7b58cc52869/grammar.js#L850-L859 -function binaryExpr(assoc, precedence, operator, expr) { +function binaryExpr(assoc, precedence, operator, left, right = null) { return assoc( precedence, - seq(field("left", expr), field("operator", operator), field("right", expr)) + seq( + field("left", left), + field("operator", operator), + field("right", right || left) + ) ); } diff --git a/vendored_parsers/tree-sitter-gleam/package-lock.json b/vendored_parsers/tree-sitter-gleam/package-lock.json index 047853c1a..39ff7ee51 100644 --- a/vendored_parsers/tree-sitter-gleam/package-lock.json +++ b/vendored_parsers/tree-sitter-gleam/package-lock.json @@ -1,54 +1,1795 @@ { "name": "tree-sitter-gleam", - "version": "0.22.1", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-gleam", - "version": "0.22.1", + "version": "1.0.0", "license": "Apache-2.0", "dependencies": { - "nan": "^2.15.0" + "nan": "^2.18.0" }, "devDependencies": { + "node-gyp": "^10.0.1", "prettier": "^2.5.1", "tree-sitter-cli": "^0.20.6" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@npmcli/agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", + "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache": { + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", + "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "dev": true + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/lru-cache": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", + "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "node_modules/make-fetch-happen": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "dev": true, + "dependencies": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-collect/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-fetch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, "node_modules/nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-gyp": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/nopt": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "dev": true, + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "optional": true + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dev": true, + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.20.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", + "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "dev": true, + "dependencies": { + "unique-slug": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "node_modules/prettier": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", - "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/tree-sitter-cli": { - "version": "0.20.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", - "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "hasInstallScript": true, - "bin": { - "tree-sitter": "cli.js" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } }, "dependencies": { + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + } + }, + "@npmcli/agent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", + "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "dev": true, + "requires": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" + } + }, + "@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "dev": true, + "requires": { + "semver": "^7.3.5" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "dev": true + }, + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "cacache": { + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", + "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", + "dev": true, + "requires": { + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, + "err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "dev": true + }, + "foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, + "fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "dev": true, + "requires": { + "minipass": "^7.0.3" + } + }, + "glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, + "requires": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + } + }, + "https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true + }, + "jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "lru-cache": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", + "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "dev": true + }, + "make-fetch-happen": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "dev": true, + "requires": { + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" + } + }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass-fetch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "dev": true, + "requires": { + "encoding": "^0.1.13", + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "node-gyp": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + } + }, + "nopt": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "dev": true, + "requires": { + "abbrev": "^2.0.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "requires": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + } }, "prettier": { "version": "2.5.1", @@ -56,11 +1797,328 @@ "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true }, + "proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true + }, + "promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "optional": true + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true + }, + "socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dev": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + } + }, + "ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "requires": { + "minipass": "^7.0.3" + } + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + } + } + }, + "tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true + } + } + }, "tree-sitter-cli": { "version": "0.20.6", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", "dev": true + }, + "unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "dev": true, + "requires": { + "unique-slug": "^4.0.0" + } + }, + "unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, + "requires": { + "isexe": "^3.1.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } } diff --git a/vendored_parsers/tree-sitter-gleam/package.json b/vendored_parsers/tree-sitter-gleam/package.json index 6757fd1d1..a7b9ea1e6 100644 --- a/vendored_parsers/tree-sitter-gleam/package.json +++ b/vendored_parsers/tree-sitter-gleam/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-gleam", - "version": "0.22.1", + "version": "1.0.0", "description": "A tree-sitter grammar for the Gleam programming language", "main": "bindings/node", "scripts": { @@ -27,11 +27,12 @@ }, "homepage": "https://github.com/J3RN/tree-sitter-gleam#readme", "dependencies": { - "nan": "^2.15.0" + "nan": "^2.18.0" }, "devDependencies": { "prettier": "^2.5.1", - "tree-sitter-cli": "^0.20.6" + "tree-sitter-cli": "^0.20.6", + "node-gyp": "^10.0.1" }, "tree-sitter": [ { diff --git a/vendored_parsers/tree-sitter-gleam/queries/highlights.scm b/vendored_parsers/tree-sitter-gleam/queries/highlights.scm index 687d61ddf..4fb28eb25 100644 --- a/vendored_parsers/tree-sitter-gleam/queries/highlights.scm +++ b/vendored_parsers/tree-sitter-gleam/queries/highlights.scm @@ -21,6 +21,8 @@ ; Functions (unqualified_import (identifier) @function) +(unqualified_import "type" (type_identifier) @type) +(unqualified_import (type_identifier) @constructor) (function name: (identifier) @function) (external_function @@ -43,6 +45,13 @@ (tuple_access index: (integer) @property) +; Attributes +(attribute + "@" @attribute + name: (identifier) @attribute) + +(attribute_value (identifier) @constant) + ; Type names (remote_type_identifier) @type (type_identifier) @type @@ -52,19 +61,24 @@ ; Literals (string) @string +((escape_sequence) @warning + ; Deprecated in v0.33.0-rc2: + (#eq? @warning "\\e")) +(escape_sequence) @string.escape (bit_string_segment_option) @function.builtin (integer) @number (float) @number +; Reserved identifiers +; TODO: when tree-sitter supports `#any-of?` in the Rust bindings, +; refactor this to use `#any-of?` rather than `#match?` +((identifier) @error + (#match? @error "^(auto|delegate|derive|else|implement|macro|test)$")) + ; Variables (identifier) @variable (discard) @comment.unused -; Operators -(binary_expression - operator: _ @operator) -"!" @operator - ; Keywords [ (visibility_modifier) ; "pub" @@ -73,16 +87,25 @@ "assert" "case" "const" + "echo" + ; DEPRECATED: 'external' was removed in v0.30. "external" "fn" "if" "import" "let" + "panic" "todo" - "try" "type" + "use" ] @keyword +; Operators +(binary_expression + operator: _ @operator) +(boolean_negation "!" @operator) +(integer_negation "-" @operator) + ; Punctuation [ "(" @@ -104,4 +127,5 @@ "->" ".." "-" + "<-" ] @punctuation.delimiter diff --git a/vendored_parsers/tree-sitter-gleam/queries/locals.scm b/vendored_parsers/tree-sitter-gleam/queries/locals.scm index 493005739..c8191697a 100644 --- a/vendored_parsers/tree-sitter-gleam/queries/locals.scm +++ b/vendored_parsers/tree-sitter-gleam/queries/locals.scm @@ -1,4 +1,6 @@ ; Scopes +(block) @local.scope + (function) @local.scope (case_clause) @local.scope diff --git a/vendored_parsers/tree-sitter-gleam/src/grammar.json b/vendored_parsers/tree-sitter-gleam/src/grammar.json index 7a2468c0f..fec220814 100644 --- a/vendored_parsers/tree-sitter-gleam/src/grammar.json +++ b/vendored_parsers/tree-sitter-gleam/src/grammar.json @@ -12,16 +12,16 @@ }, { "type": "SYMBOL", - "name": "_statement" + "name": "_module_statement" }, { "type": "SYMBOL", - "name": "_expression_seq" + "name": "_statement_seq" } ] } }, - "_statement": { + "_module_statement": { "type": "CHOICE", "members": [ { @@ -51,6 +51,10 @@ { "type": "SYMBOL", "name": "type_alias" + }, + { + "type": "SYMBOL", + "name": "attribute" } ] }, @@ -125,7 +129,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_statement" + "name": "_module_statement" } }, { @@ -147,6 +151,128 @@ } ] }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_attribute_arguments" + }, + "named": true, + "value": "arguments" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_attribute_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_value" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute_value" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "attribute_value": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_constant_value" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_constant_value" + } + } + ] + } + ] + }, "import": { "type": "SEQ", "members": [ @@ -201,8 +327,17 @@ "type": "FIELD", "name": "alias", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "discard" + } + ] } } ] @@ -341,6 +476,10 @@ { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "type" + }, { "type": "FIELD", "name": "name", @@ -375,6 +514,44 @@ ] } ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "constructor_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "constructor_name" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] } ] }, @@ -481,6 +658,19 @@ }, "named": true, "value": "record" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_field_access" + }, + "named": true, + "value": "field_access" } ] }, @@ -916,39 +1106,86 @@ ] }, "constant_record_argument": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] }, { - "type": "STRING", - "value": ":" + "type": "BLANK" } ] }, { - "type": "BLANK" + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_constant_value" + } } ] }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] + } + ] + }, + "constant_field_access": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "record", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "." + }, { "type": "FIELD", - "name": "value", + "name": "field", "content": { "type": "SYMBOL", - "name": "_constant_value" + "name": "label" } } ] @@ -969,6 +1206,15 @@ "named": true, "value": "tuple_type" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_function_type" + }, + "named": true, + "value": "function_type" + }, { "type": "ALIAS", "content": { @@ -1059,18 +1305,118 @@ } ] }, - "constant_type": { + "constant_function_type": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_identifier" + "type": "STRING", + "value": "fn" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameter_types", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constant_function_parameter_types" + }, + "named": true, + "value": "function_parameter_types" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "_constant_type" + } + } + ] + }, + "constant_function_parameter_types": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_constant_type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_constant_type" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "constant_type": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_identifier" }, { "type": "SYMBOL", @@ -1175,33 +1521,45 @@ "name": "_constant_type" }, "external_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "external" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "type_name" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "external" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + } }, "external_function": { "type": "SEQ", @@ -1393,94 +1751,93 @@ ] }, "function": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "visibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "fn" + }, + { + "type": "FIELD", + "name": "name", + "content": { "type": "SYMBOL", - "name": "visibility_modifier" - }, - { - "type": "BLANK" + "name": "identifier" } - ] - }, + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "function_parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "function_parameters": { + "type": "SEQ", + "members": [ { "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "SYMBOL", - "name": "function_parameters" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "return_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expression_seq" - }, - "named": true, - "value": "function_body" - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "function_parameters": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" + "value": "(" }, { "type": "CHOICE", @@ -1629,60 +1986,35 @@ "name": "identifier" } }, - "_expression_seq": { + "_statement_seq": { "type": "REPEAT1", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "try" - } - ] + "type": "SYMBOL", + "name": "_statement" } }, - "try": { - "type": "SEQ", + "_statement": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "try" + "type": "SYMBOL", + "name": "_expression" }, { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } + "type": "SYMBOL", + "name": "let" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_annotation" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "let_assert" }, { - "type": "STRING", - "value": "=" + "type": "SYMBOL", + "name": "use" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SYMBOL", + "name": "assert" } ] }, @@ -2124,8 +2456,17 @@ "type": "FIELD", "name": "right", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pipeline_echo" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] } } ] @@ -2427,6 +2768,39 @@ } ] } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } } ] }, @@ -2457,10 +2831,18 @@ "type": "SYMBOL", "name": "todo" }, + { + "type": "SYMBOL", + "name": "panic" + }, { "type": "SYMBOL", "name": "tuple" }, + { + "type": "SYMBOL", + "name": "echo" + }, { "type": "SYMBOL", "name": "list" @@ -2480,7 +2862,7 @@ }, { "type": "SYMBOL", - "name": "expression_group" + "name": "block" }, { "type": "SYMBOL", @@ -2488,15 +2870,11 @@ }, { "type": "SYMBOL", - "name": "let" - }, - { - "type": "SYMBOL", - "name": "assert" + "name": "boolean_negation" }, { "type": "SYMBOL", - "name": "negation" + "name": "integer_negation" }, { "type": "SYMBOL", @@ -2555,84 +2933,195 @@ ] }, "todo": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "todo" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "message", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "tuple": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "REPEAT", - "content": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "todo" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { "type": "SEQ", "members": [ { "type": "STRING", - "value": "," + "value": "(" }, { - "type": "SYMBOL", - "name": "_expression" + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "string" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } ] } - }, - { - "type": "CHOICE", - "members": [ - { + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "panic": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "panic" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "string" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "pipeline_echo": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "STRING", + "value": "echo" + } + }, + "echo": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "echo" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "tuple": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { "type": "STRING", "value": "," }, @@ -2990,26 +3479,13 @@ } ] }, - { - "type": "STRING", - "value": "{" - }, { "type": "FIELD", "name": "body", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expression_seq" - }, - "named": true, - "value": "function_body" + "type": "SYMBOL", + "name": "block" } - }, - { - "type": "STRING", - "value": "}" } ] }, @@ -3111,7 +3587,7 @@ } ] }, - "expression_group": { + "block": { "type": "SEQ", "members": [ { @@ -3119,8 +3595,16 @@ "value": "{" }, { - "type": "SYMBOL", - "name": "_expression_seq" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statement_seq" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3148,12 +3632,20 @@ "value": "{" }, { - "type": "FIELD", - "name": "clauses", - "content": { - "type": "SYMBOL", - "name": "case_clauses" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "clauses", + "content": { + "type": "SYMBOL", + "name": "case_clauses" + } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -3301,72 +3793,373 @@ "name": "_pattern" }, { - "type": "REPEAT", + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "case_clause_guard": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + ] + }, + "_case_clause_guard_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_case_clause_guard_unit" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_binary_expression" + }, + "named": true, + "value": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "boolean_negation" + } + ] + }, + "_case_clause_guard_binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<." + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, "content": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "," + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } }, { - "type": "SYMBOL", - "name": "_pattern" + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=." + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } } ] } }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "case_clause_guard": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" - } - ] - }, - "_case_clause_guard_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_case_clause_guard_unit" - }, - { - "type": "ALIAS", + "type": "PREC_LEFT", + "value": 4, "content": { - "type": "SYMBOL", - "name": "_case_clause_guard_binary_expression" - }, - "named": true, - "value": "binary_expression" - } - ] - }, - "_case_clause_guard_binary_expression": { - "type": "CHOICE", - "members": [ + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + } + } + ] + } + }, { "type": "PREC_LEFT", - "value": 1, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -3383,7 +4176,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "||" + "value": ">=" } }, { @@ -3399,7 +4192,7 @@ }, { "type": "PREC_LEFT", - "value": 2, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -3416,7 +4209,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "&&" + "value": ">." } }, { @@ -3432,7 +4225,7 @@ }, { "type": "PREC_LEFT", - "value": 3, + "value": 4, "content": { "type": "SEQ", "members": [ @@ -3449,7 +4242,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "==" + "value": ">=." } }, { @@ -3465,7 +4258,7 @@ }, { "type": "PREC_LEFT", - "value": 3, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -3482,7 +4275,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "!=" + "value": "+" } }, { @@ -3498,7 +4291,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -3515,7 +4308,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "<" + "value": "+." } }, { @@ -3531,7 +4324,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -3548,7 +4341,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "<=" + "value": "-" } }, { @@ -3564,7 +4357,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -3581,7 +4374,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "<." + "value": "-." } }, { @@ -3597,7 +4390,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -3614,7 +4407,7 @@ "name": "operator", "content": { "type": "STRING", - "value": "<=." + "value": "*" } }, { @@ -3630,7 +4423,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -3647,7 +4440,7 @@ "name": "operator", "content": { "type": "STRING", - "value": ">" + "value": "*." } }, { @@ -3663,7 +4456,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -3680,7 +4473,7 @@ "name": "operator", "content": { "type": "STRING", - "value": ">=" + "value": "/" } }, { @@ -3696,7 +4489,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -3713,7 +4506,7 @@ "name": "operator", "content": { "type": "STRING", - "value": ">." + "value": "/." } }, { @@ -3729,7 +4522,7 @@ }, { "type": "PREC_LEFT", - "value": 4, + "value": 6, "content": { "type": "SEQ", "members": [ @@ -3746,7 +4539,7 @@ "name": "operator", "content": { "type": "STRING", - "value": ">=." + "value": "%" } }, { @@ -3756,112 +4549,291 @@ "type": "SYMBOL", "name": "_case_clause_guard_expression" } - } - ] - } + } + ] + } + } + ] + }, + "_case_clause_guard_unit": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_case_clause_tuple_access" + }, + "named": true, + "value": "tuple_access" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_case_clause_guard_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + { + "type": "SYMBOL", + "name": "_constant_value" + } + ] + }, + "_case_clause_tuple_access": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "tuple", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "SYMBOL", + "name": "integer" + } + } + ] + }, + "let_assert": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "assert" + }, + { + "type": "SYMBOL", + "name": "_assignment" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "_case_clause_guard_unit": { - "type": "CHOICE", + "assert": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "STRING", + "value": "assert" }, { - "type": "PREC", - "value": 1, + "type": "FIELD", + "name": "value", "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_case_clause_tuple_access" - }, - "named": true, - "value": "tuple_access" + "type": "SYMBOL", + "name": "_expression" } }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_case_clause_guard_expression" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] }, { - "type": "STRING", - "value": "}" + "type": "BLANK" } ] + } + ] + }, + "let": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" }, { "type": "SYMBOL", - "name": "_constant_value" + "name": "_assignment" } ] }, - "_case_clause_tuple_access": { + "use": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "tuple", - "content": { - "type": "SYMBOL", - "name": "identifier" - } + "type": "STRING", + "value": "use" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "assignments", + "content": { + "type": "SYMBOL", + "name": "use_assignments" + } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", - "value": "." + "value": "<-" }, { "type": "FIELD", - "name": "index", + "name": "value", "content": { "type": "SYMBOL", - "name": "integer" + "name": "_expression" } } ] }, - "let": { + "use_assignments": { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "let" + "type": "SYMBOL", + "name": "use_assignment" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "use_assignment" + } + ] + } }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "use_assignment": { + "type": "SEQ", + "members": [ { "type": "SYMBOL", - "name": "_assignment" + "name": "_pattern" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_annotation" + }, + { + "type": "BLANK" + } + ] } ] }, - "assert": { + "boolean_negation": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "assert" + "value": "!" }, { "type": "SYMBOL", - "name": "_assignment" + "name": "_expression_unit" } ] }, - "negation": { + "integer_negation": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "!" + "value": "-" }, { "type": "SYMBOL", @@ -3998,27 +4970,49 @@ ] }, "record_update_argument": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } - }, - { - "type": "STRING", - "value": ":" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] } ] }, @@ -4039,7 +5033,7 @@ }, { "type": "SYMBOL", - "name": "expression_group" + "name": "block" }, { "type": "SYMBOL", @@ -4101,7 +5095,7 @@ }, { "type": "SYMBOL", - "name": "expression_group" + "name": "block" }, { "type": "SYMBOL", @@ -4163,7 +5157,7 @@ }, { "type": "SYMBOL", - "name": "expression_group" + "name": "block" }, { "type": "SYMBOL", @@ -4242,49 +5236,71 @@ ] }, "argument": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] }, { - "type": "STRING", - "value": ":" + "type": "BLANK" } ] }, { - "type": "BLANK" + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hole" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } } - ] - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "hole" - }, - { + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { "type": "SYMBOL", - "name": "_expression" + "name": "label" } - ] - } + }, + { + "type": "STRING", + "value": ":" + } + ] } ] }, @@ -4313,54 +5329,138 @@ } ] }, + "_pattern_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "discard" + }, + { + "type": "SYMBOL", + "name": "record_pattern" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + }, + { + "type": "SYMBOL", + "name": "tuple_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pattern_bit_string" + }, + "named": true, + "value": "bit_string_pattern" + }, + { + "type": "SYMBOL", + "name": "list_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pattern_binary_expression" + }, + "named": true, + "value": "binary_expression" + } + ] + }, + "_pattern_binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_pattern_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_pattern_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "string" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "as" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + } + ] + }, "_pattern": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "discard" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "float" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_pattern_bit_string" - }, - "named": true, - "value": "bit_string_pattern" - }, - { - "type": "SYMBOL", - "name": "list_pattern" - } - ] + "type": "SYMBOL", + "name": "_pattern_expression" }, { "type": "CHOICE", @@ -4498,40 +5598,62 @@ ] }, "record_pattern_argument": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "label", - "content": { - "type": "SYMBOL", - "name": "label" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] }, { - "type": "STRING", - "value": ":" + "type": "BLANK" } ] }, { - "type": "BLANK" + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } } ] }, { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "SYMBOL", + "name": "label" + } + }, + { + "type": "STRING", + "value": ":" + } + ] } ] }, @@ -4998,6 +6120,18 @@ "data_constructor": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -5198,15 +6332,27 @@ ] }, "escape_sequence": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PATTERN", - "value": "\\\\[efnrt\\\"\\\\]" - } + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\\\[efnrt\\\"\\\\]" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\\\u\\{[0-9a-fA-F]{1,6}\\}" + } + } + ] }, "float": { "type": "PATTERN", - "value": "-?[0-9_]+\\.[0-9_]*" + "value": "-?[0-9_]+\\.[0-9_]*(e-?[0-9_]+)?" }, "integer": { "type": "SEQ", @@ -5847,10 +6993,6 @@ } }, "extras": [ - { - "type": "STRING", - "value": ";" - }, { "type": "PATTERN", "value": "\\r?\\n" @@ -5877,11 +7019,6 @@ "_maybe_record_expression", "_maybe_tuple_expression" ], - [ - "_maybe_record_expression", - "_maybe_tuple_expression", - "remote_type_identifier" - ], [ "_maybe_record_expression", "_maybe_tuple_expression", @@ -5892,6 +7029,16 @@ ], [ "source_file" + ], + [ + "_constant_value", + "_case_clause_guard_unit" + ], + [ + "integer" + ], + [ + "echo" ] ], "precedences": [], diff --git a/vendored_parsers/tree-sitter-gleam/src/node-types.json b/vendored_parsers/tree-sitter-gleam/src/node-types.json index ce1a55f2c..fd79e8f33 100644 --- a/vendored_parsers/tree-sitter-gleam/src/node-types.json +++ b/vendored_parsers/tree-sitter-gleam/src/node-types.json @@ -8,7 +8,7 @@ "required": true, "types": [ { - "type": "function_body", + "type": "block", "named": true } ] @@ -67,22 +67,26 @@ }, "value": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "anonymous_function", "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -90,7 +94,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -118,7 +122,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -126,7 +130,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -168,6 +172,10 @@ { "type": "argument", "named": true + }, + { + "type": "attribute_value", + "named": true } ] } @@ -176,40 +184,50 @@ "type": "assert", "named": true, "fields": { - "assign": { - "multiple": true, + "message": { + "multiple": false, "required": false, "types": [ { - "type": "as", - "named": false + "type": "anonymous_function", + "named": true }, { - "type": "identifier", + "type": "binary_expression", "named": true - } - ] - }, - "pattern": { - "multiple": true, - "required": true, - "types": [ + }, { - "type": "as", - "named": false + "type": "bit_string", + "named": true }, { - "type": "bit_string_pattern", + "type": "block", "named": true }, { - "type": "discard", + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", "named": true }, { "type": "float", "named": true }, + { + "type": "function_call", + "named": true + }, { "type": "identifier", "named": true @@ -219,45 +237,39 @@ "named": true }, { - "type": "list_pattern", + "type": "integer_negation", "named": true }, { - "type": "record_pattern", + "type": "list", "named": true }, { - "type": "string", + "type": "panic", "named": true }, { - "type": "tuple_pattern", + "type": "record", "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "function_type", + "type": "record_update", "named": true }, { - "type": "tuple_type", + "type": "string", "named": true }, { - "type": "type", + "type": "todo", "named": true }, { - "type": "type_hole", + "type": "tuple", "named": true }, { - "type": "type_var", + "type": "tuple_access", "named": true } ] @@ -271,15 +283,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -287,7 +303,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -311,7 +327,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -319,7 +335,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -350,6 +366,132 @@ } } }, + { + "type": "attribute", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "attribute_value", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "label", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "bit_string", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "bit_string", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + } + ] + } + }, { "type": "binary_expression", "named": true, @@ -363,15 +505,23 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "bit_string_pattern", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -379,7 +529,11 @@ "named": true }, { - "type": "expression_group", + "type": "discard", + "named": true + }, + { + "type": "echo", "named": true }, { @@ -403,7 +557,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -411,13 +565,21 @@ "named": true }, { - "type": "negation", + "type": "list_pattern", + "named": true + }, + { + "type": "panic", "named": true }, { "type": "record", "named": true }, + { + "type": "record_pattern", + "named": true + }, { "type": "record_update", "named": true @@ -438,6 +600,10 @@ "type": "tuple_access", "named": true }, + { + "type": "tuple_pattern", + "named": true + }, { "type": "{", "named": false @@ -512,6 +678,10 @@ "type": "<=.", "named": false }, + { + "type": "<>", + "named": false + }, { "type": "==", "named": false @@ -532,6 +702,10 @@ "type": ">=.", "named": false }, + { + "type": "as", + "named": false + }, { "type": "|>", "named": false @@ -551,15 +725,23 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "bit_string_pattern", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -567,7 +749,11 @@ "named": true }, { - "type": "expression_group", + "type": "discard", + "named": true + }, + { + "type": "echo", "named": true }, { @@ -591,7 +777,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -599,13 +785,25 @@ "named": true }, { - "type": "negation", + "type": "list_pattern", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "pipeline_echo", "named": true }, { "type": "record", "named": true }, + { + "type": "record_pattern", + "named": true + }, { "type": "record_update", "named": true @@ -626,6 +824,10 @@ "type": "tuple_access", "named": true }, + { + "type": "tuple_pattern", + "named": true + }, { "type": "{", "named": false @@ -713,7 +915,7 @@ "named": false }, { - "type": "assert", + "type": "binary_expression", "named": true }, { @@ -724,6 +926,14 @@ "type": "bit_string_pattern", "named": true }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -733,7 +943,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -757,7 +967,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -769,7 +979,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -815,6 +1025,120 @@ "children": { "multiple": false, "required": false, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + }, + { + "type": "bit_string_segment_options", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "bit_string_segment_option", + "named": true + }, + { + "type": "integer", + "named": true + } + ] + } + }, + { + "type": "block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, "types": [ { "type": "anonymous_function", @@ -832,12 +1156,20 @@ "type": "bit_string", "named": true }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -860,16 +1192,24 @@ "type": "integer", "named": true }, + { + "type": "integer_negation", + "named": true + }, { "type": "let", "named": true }, + { + "type": "let_assert", + "named": true + }, { "type": "list", "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -895,25 +1235,101 @@ { "type": "tuple_access", "named": true + }, + { + "type": "use", + "named": true } ] } }, { - "type": "bit_string_segment_options", + "type": "boolean_negation", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { - "type": "bit_string_segment_option", + "type": "anonymous_function", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", "named": true }, { "type": "integer", "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true } ] } @@ -924,7 +1340,7 @@ "fields": { "clauses": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "case_clauses", @@ -977,15 +1393,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -993,7 +1413,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -1017,7 +1437,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -1025,7 +1445,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -1072,6 +1492,14 @@ "type": "bit_string", "named": true }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "field_access", + "named": true + }, { "type": "float", "named": true @@ -1130,6 +1558,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "binary_expression", + "named": true + }, { "type": "bit_string_pattern", "named": true @@ -1212,15 +1644,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -1228,7 +1664,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -1252,7 +1688,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -1260,7 +1696,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -1308,6 +1744,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "function_type", + "named": true + }, { "type": "tuple_type", "named": true @@ -1331,19 +1771,27 @@ "named": true }, { - "type": "float", + "type": "field_access", "named": true }, { - "type": "integer", + "type": "float", "named": true }, { - "type": "list", + "type": "identifier", "named": true }, { - "type": "record", + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "record", "named": true }, { @@ -1397,6 +1845,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute", + "named": true + } + ] } }, { @@ -1477,11 +1935,11 @@ "fields": {} }, { - "type": "expression_group", + "type": "echo", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { @@ -1489,15 +1947,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -1505,7 +1967,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -1529,7 +1991,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -1537,7 +1999,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -1556,10 +2018,6 @@ "type": "todo", "named": true }, - { - "type": "try", - "named": true - }, { "type": "tuple", "named": true @@ -1571,6 +2029,11 @@ ] } }, + { + "type": "escape_sequence", + "named": true, + "fields": {} + }, { "type": "external_function", "named": true, @@ -1696,11 +2159,11 @@ "required": true, "types": [ { - "type": "case", + "type": "block", "named": true }, { - "type": "expression_group", + "type": "case", "named": true }, { @@ -1737,10 +2200,10 @@ "fields": { "body": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "function_body", + "type": "block", "named": true } ] @@ -1803,101 +2266,6 @@ ] } }, - { - "type": "function_body", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "expression_group", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "let", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negation", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, - { - "type": "try", - "named": true - }, - { - "type": "tuple", - "named": true - }, - { - "type": "tuple_access", - "named": true - } - ] - } - }, { "type": "function_call", "named": true, @@ -1921,11 +2289,11 @@ "named": true }, { - "type": "case", + "type": "block", "named": true }, { - "type": "expression_group", + "type": "case", "named": true }, { @@ -2110,6 +2478,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "discard", + "named": true + }, { "type": "identifier", "named": true @@ -2143,6 +2515,97 @@ "named": true, "fields": {} }, + { + "type": "integer_negation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + }, { "type": "label", "named": true, @@ -2174,6 +2637,10 @@ "type": "as", "named": false }, + { + "type": "binary_expression", + "named": true + }, { "type": "bit_string_pattern", "named": true @@ -2247,15 +2714,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -2263,7 +2734,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -2287,7 +2758,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -2295,7 +2766,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -2327,19 +2798,29 @@ } }, { - "type": "list", + "type": "let_assert", "named": true, "fields": { - "spread": { - "multiple": false, + "assign": { + "multiple": true, "required": false, "types": [ { - "type": "anonymous_function", - "named": true + "type": "as", + "named": false }, { - "type": "assert", + "type": "identifier", + "named": true + } + ] + }, + "message": { + "multiple": false, + "required": false, + "types": [ + { + "type": "anonymous_function", "named": true }, { @@ -2351,15 +2832,189 @@ "named": true }, { - "type": "case", + "type": "block", "named": true }, { - "type": "expression_group", + "type": "boolean_negation", "named": true }, { - "type": "field_access", + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + }, + "pattern": { + "multiple": true, + "required": true, + "types": [ + { + "type": "as", + "named": false + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string_pattern", + "named": true + }, + { + "type": "discard", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "record_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_hole", + "named": true + }, + { + "type": "type_var", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", "named": true }, { @@ -2379,7 +3034,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -2387,7 +3042,103 @@ "named": true }, { - "type": "negation", + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + } + }, + { + "type": "list", + "named": true, + "fields": { + "spread": { + "multiple": false, + "required": false, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", "named": true }, { @@ -2426,15 +3177,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -2442,7 +3197,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -2466,7 +3221,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -2474,7 +3229,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -2527,6 +3282,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "binary_expression", + "named": true + }, { "type": "bit_string_pattern", "named": true @@ -2573,119 +3332,133 @@ { "type": "list_pattern_tail", "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "discard", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "module", - "named": true, - "fields": {} - }, - { - "type": "negation", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anonymous_function", - "named": true - }, - { - "type": "assert", - "named": true - }, - { - "type": "bit_string", - "named": true - }, - { - "type": "case", - "named": true - }, - { - "type": "expression_group", - "named": true - }, - { - "type": "field_access", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "let", - "named": true - }, - { - "type": "list", - "named": true - }, - { - "type": "negation", - "named": true - }, - { - "type": "record", - "named": true - }, - { - "type": "record_update", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "todo", - "named": true - }, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ { - "type": "tuple", + "type": "discard", "named": true }, { - "type": "tuple_access", + "type": "identifier", "named": true } ] } }, + { + "type": "module", + "named": true, + "fields": {} + }, + { + "type": "panic", + "named": true, + "fields": { + "message": { + "multiple": false, + "required": false, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + } + }, { "type": "pattern_spread", "named": true, "fields": {} }, + { + "type": "pipeline_echo", + "named": true, + "fields": {} + }, { "type": "record", "named": true, @@ -2776,12 +3549,16 @@ }, "pattern": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "as", "named": false }, + { + "type": "binary_expression", + "named": true + }, { "type": "bit_string_pattern", "named": true @@ -2878,15 +3655,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -2894,7 +3675,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -2918,7 +3699,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -2926,7 +3707,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -2973,22 +3754,26 @@ }, "value": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "anonymous_function", "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -2996,7 +3781,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -3020,7 +3805,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -3028,7 +3813,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -3142,6 +3927,10 @@ "type": "assert", "named": true }, + { + "type": "attribute", + "named": true + }, { "type": "binary_expression", "named": true @@ -3150,6 +3939,14 @@ "type": "bit_string", "named": true }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, { "type": "case", "named": true @@ -3159,7 +3956,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -3198,16 +3995,24 @@ "type": "integer", "named": true }, + { + "type": "integer_negation", + "named": true + }, { "type": "let", "named": true }, + { + "type": "let_assert", + "named": true + }, { "type": "list", "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -3230,10 +4035,6 @@ "type": "todo", "named": true }, - { - "type": "try", - "named": true - }, { "type": "tuple", "named": true @@ -3249,6 +4050,10 @@ { "type": "type_definition", "named": true + }, + { + "type": "use", + "named": true } ] } @@ -3296,6 +4101,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute", + "named": true + }, { "type": "constant", "named": true @@ -3333,124 +4142,26 @@ "fields": { "message": { "multiple": false, - "required": false, - "types": [ - { - "type": "string", - "named": true - } - ] - } - } - }, - { - "type": "try", - "named": true, - "fields": { - "assign": { - "multiple": true, - "required": false, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "identifier", - "named": true - } - ] - }, - "pattern": { - "multiple": true, - "required": true, - "types": [ - { - "type": "as", - "named": false - }, - { - "type": "bit_string_pattern", - "named": true - }, - { - "type": "discard", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "function_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_hole", - "named": true - }, - { - "type": "type_var", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, + "required": false, "types": [ { "type": "anonymous_function", "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -3458,7 +4169,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -3482,7 +4193,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -3490,7 +4201,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -3534,15 +4245,19 @@ "named": true }, { - "type": "assert", + "type": "binary_expression", "named": true }, { - "type": "binary_expression", + "type": "bit_string", "named": true }, { - "type": "bit_string", + "type": "block", + "named": true + }, + { + "type": "boolean_negation", "named": true }, { @@ -3550,7 +4265,7 @@ "named": true }, { - "type": "expression_group", + "type": "echo", "named": true }, { @@ -3574,7 +4289,7 @@ "named": true }, { - "type": "let", + "type": "integer_negation", "named": true }, { @@ -3582,7 +4297,7 @@ "named": true }, { - "type": "negation", + "type": "panic", "named": true }, { @@ -3631,11 +4346,11 @@ "required": true, "types": [ { - "type": "case", + "type": "block", "named": true }, { - "type": "expression_group", + "type": "case", "named": true }, { @@ -3685,6 +4400,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "binary_expression", + "named": true + }, { "type": "bit_string_pattern", "named": true @@ -3974,6 +4693,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "constructor_name", + "named": true + }, { "type": "identifier", "named": true @@ -3988,6 +4711,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "constructor_name", + "named": true + }, { "type": "identifier", "named": true @@ -4015,6 +4742,219 @@ ] } }, + { + "type": "use", + "named": true, + "fields": { + "assignments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "use_assignments", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "anonymous_function", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean_negation", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "echo", + "named": true + }, + { + "type": "field_access", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "integer_negation", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "panic", + "named": true + }, + { + "type": "record", + "named": true + }, + { + "type": "record_update", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "todo", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "tuple_access", + "named": true + } + ] + } + } + }, + { + "type": "use_assignment", + "named": true, + "fields": { + "assign": { + "multiple": true, + "required": false, + "types": [ + { + "type": "as", + "named": false + }, + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "function_type", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_hole", + "named": true + }, + { + "type": "type_var", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "bit_string_pattern", + "named": true + }, + { + "type": "discard", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "record_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + } + ] + } + }, + { + "type": "use_assignments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "use_assignment", + "named": true + } + ] + } + }, { "type": "!", "named": false @@ -4103,6 +5043,10 @@ "type": "<", "named": false }, + { + "type": "<-", + "named": false + }, { "type": "<.", "named": false @@ -4119,6 +5063,10 @@ "type": "<=.", "named": false }, + { + "type": "<>", + "named": false + }, { "type": "=", "named": false @@ -4147,6 +5095,10 @@ "type": ">>", "named": false }, + { + "type": "@", + "named": false + }, { "type": "[", "named": false @@ -4196,12 +5148,12 @@ "named": false }, { - "type": "erlang", + "type": "echo", "named": false }, { - "type": "escape_sequence", - "named": true + "type": "erlang", + "named": false }, { "type": "external", @@ -4255,6 +5207,10 @@ "type": "opacity_modifier", "named": true }, + { + "type": "panic", + "named": false + }, { "type": "quoted_content", "named": true @@ -4275,10 +5231,6 @@ "type": "todo", "named": false }, - { - "type": "try", - "named": false - }, { "type": "type", "named": false @@ -4291,6 +5243,10 @@ "type": "unsigned", "named": false }, + { + "type": "use", + "named": false + }, { "type": "utf16", "named": false diff --git a/vendored_parsers/tree-sitter-gleam/src/parser.c b/vendored_parsers/tree-sitter-gleam/src/parser.c index bbafa1906..5bedd6348 100644 --- a/vendored_parsers/tree-sitter-gleam/src/parser.c +++ b/vendored_parsers/tree-sitter-gleam/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1293 -#define LARGE_STATE_COUNT 4 -#define SYMBOL_COUNT 249 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 90 +#define STATE_COUNT 1892 +#define LARGE_STATE_COUNT 14 +#define SYMBOL_COUNT 274 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 96 #define EXTERNAL_TOKEN_COUNT 1 -#define FIELD_COUNT 31 +#define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 66 +#define PRODUCTION_ID_COUNT 80 enum { sym_module_comment = 1, @@ -33,28 +33,28 @@ enum { anon_sym_RBRACE = 6, anon_sym_erlang = 7, anon_sym_javascript = 8, - anon_sym_import = 9, - anon_sym_DOT = 10, - anon_sym_as = 11, - anon_sym_SLASH = 12, - anon_sym_COMMA = 13, - anon_sym_const = 14, - anon_sym_EQ = 15, - anon_sym_POUND = 16, - anon_sym_LPAREN = 17, - anon_sym_RPAREN = 18, - anon_sym_LBRACK = 19, - anon_sym_RBRACK = 20, - anon_sym_LT_LT = 21, - anon_sym_GT_GT = 22, - anon_sym_COLON = 23, - anon_sym_DASH = 24, - anon_sym_size = 25, - anon_sym_external = 26, - anon_sym_type = 27, + anon_sym_AT = 9, + anon_sym_LPAREN = 10, + anon_sym_COMMA = 11, + anon_sym_RPAREN = 12, + anon_sym_COLON = 13, + anon_sym_import = 14, + anon_sym_DOT = 15, + anon_sym_as = 16, + anon_sym_SLASH = 17, + anon_sym_type = 18, + anon_sym_const = 19, + anon_sym_EQ = 20, + anon_sym_POUND = 21, + anon_sym_LBRACK = 22, + anon_sym_RBRACK = 23, + anon_sym_LT_LT = 24, + anon_sym_GT_GT = 25, + anon_sym_DASH = 26, + anon_sym_size = 27, anon_sym_fn = 28, anon_sym_DASH_GT = 29, - anon_sym_try = 30, + anon_sym_external = 30, anon_sym_PIPE_PIPE = 31, anon_sym_AMP_AMP = 32, anon_sym_EQ_EQ = 33, @@ -75,205 +75,229 @@ enum { anon_sym_STAR_DOT = 48, anon_sym_SLASH_DOT = 49, anon_sym_PERCENT = 50, - anon_sym_todo = 51, - anon_sym_DOT_DOT = 52, - anon_sym_case = 53, - anon_sym_PIPE = 54, - anon_sym_let = 55, - anon_sym_assert = 56, - anon_sym_BANG = 57, - sym_visibility_modifier = 58, - sym_opacity_modifier = 59, - anon_sym_DQUOTE = 60, - anon_sym_DQUOTE2 = 61, - sym_escape_sequence = 62, - sym_float = 63, - sym__hex = 64, - sym__decimal = 65, - sym__octal = 66, - sym__binary = 67, - anon_sym_binary = 68, - anon_sym_bytes = 69, - anon_sym_int = 70, - anon_sym_float = 71, - anon_sym_bit_string = 72, - anon_sym_bits = 73, - anon_sym_utf8 = 74, - anon_sym_utf16 = 75, - anon_sym_utf32 = 76, - anon_sym_utf8_codepoint = 77, - anon_sym_utf16_codepoint = 78, - anon_sym_utf32_codepoint = 79, - anon_sym_signed = 80, - anon_sym_unsigned = 81, - anon_sym_big = 82, - anon_sym_little = 83, - anon_sym_native = 84, - anon_sym_unit = 85, - sym__discard_name = 86, - sym__name = 87, - sym__upname = 88, - sym_quoted_content = 89, - sym_source_file = 90, - sym__statement = 91, - sym_target_group = 92, - sym_target = 93, - sym_import = 94, - sym_module = 95, - sym_unqualified_imports = 96, - sym_unqualified_import = 97, - sym_constant = 98, - sym__constant_value = 99, - sym_constant_tuple = 100, - sym_constant_list = 101, - sym__constant_bit_string = 102, - sym_constant_bit_string_segment = 103, - sym_constant_bit_string_segment_options = 104, - sym__constant_bit_string_segment_option = 105, - sym__constant_bit_string_named_segment_option = 106, - sym__constant_bit_string_segment_option_size = 107, - sym_constant_record = 108, - sym_constant_record_arguments = 109, - sym_constant_record_argument = 110, - sym__constant_type = 111, - sym__constant_type_annotation = 112, - sym_constant_tuple_type = 113, - sym_constant_type = 114, - sym_constant_type_arguments = 115, - sym_constant_type_argument = 116, - sym_external_type = 117, - sym_external_function = 118, - sym_external_function_parameters = 119, - sym_external_function_parameter = 120, - sym_external_function_body = 121, - sym_function = 122, - sym_function_parameters = 123, - sym_function_parameter = 124, - sym__labeled_discard_param = 125, - sym__discard_param = 126, - sym__labeled_name_param = 127, - sym__name_param = 128, - aux_sym__expression_seq = 129, - sym_try = 130, - sym__expression = 131, - sym_binary_expression = 132, - sym__expression_unit = 133, - sym_record = 134, - sym_todo = 135, - sym_tuple = 136, - sym_list = 137, - sym__expression_bit_string = 138, - sym_expression_bit_string_segment = 139, - sym_expression_bit_string_segment_options = 140, - sym__expression_bit_string_segment_option = 141, - sym__expression_bit_string_named_segment_option = 142, - sym__expression_bit_string_segment_option_size = 143, - sym_anonymous_function = 144, - sym_anonymous_function_parameters = 145, - sym_anonymous_function_parameter = 146, - sym_expression_group = 147, - sym_case = 148, - sym_case_subjects = 149, - sym_case_clauses = 150, - sym_case_clause = 151, - sym_case_clause_patterns = 152, - sym_case_clause_pattern = 153, - sym_case_clause_guard = 154, - sym__case_clause_guard_expression = 155, - sym__case_clause_guard_binary_expression = 156, - sym__case_clause_guard_unit = 157, - sym__case_clause_tuple_access = 158, - sym_let = 159, - sym_assert = 160, - sym_negation = 161, - sym__assignment = 162, - sym_record_update = 163, - sym_record_update_arguments = 164, - sym_record_update_argument = 165, - sym__maybe_tuple_expression = 166, - sym_tuple_access = 167, - sym__maybe_record_expression = 168, - sym_field_access = 169, - sym__maybe_function_expression = 170, - sym_arguments = 171, - sym_argument = 172, - sym_hole = 173, - sym_function_call = 174, - sym__pattern = 175, - sym_record_pattern = 176, - sym_record_pattern_arguments = 177, - sym_record_pattern_argument = 178, - sym_pattern_spread = 179, - sym_tuple_pattern = 180, - sym__pattern_bit_string = 181, - sym_pattern_bit_string_segment = 182, - sym_pattern_bit_string_segment_options = 183, - sym__pattern_bit_string_segment_option = 184, - sym__pattern_bit_string_named_segment_option = 185, - sym__pattern_bit_string_segment_option_size = 186, - sym__pattern_bit_string_segment_argument = 187, - sym_list_pattern = 188, - sym_list_pattern_tail = 189, - sym_type_definition = 190, - sym_data_constructors = 191, - sym_data_constructor = 192, - sym_data_constructor_arguments = 193, - sym_data_constructor_argument = 194, - sym_type_alias = 195, - sym_string = 196, - sym_integer = 197, - sym__bit_string_segment_option = 198, - sym__type = 199, - sym__type_annotation = 200, - sym_type_hole = 201, - sym_tuple_type = 202, - sym_function_type = 203, - sym_function_parameter_types = 204, - sym_type = 205, - sym_type_arguments = 206, - sym_type_argument = 207, - sym_type_var = 208, - sym_type_name = 209, - sym_type_parameters = 210, - sym_type_parameter = 211, - sym_identifier = 212, - sym_label = 213, - sym_discard = 214, - sym_type_identifier = 215, - sym_remote_type_identifier = 216, - sym_constructor_name = 217, - sym_remote_constructor_name = 218, - aux_sym_source_file_repeat1 = 219, - aux_sym_target_group_repeat1 = 220, - aux_sym_module_repeat1 = 221, - aux_sym_unqualified_imports_repeat1 = 222, - aux_sym_constant_tuple_repeat1 = 223, - aux_sym__constant_bit_string_repeat1 = 224, - aux_sym_constant_bit_string_segment_options_repeat1 = 225, - aux_sym_constant_record_arguments_repeat1 = 226, - aux_sym_constant_tuple_type_repeat1 = 227, - aux_sym_constant_type_arguments_repeat1 = 228, - aux_sym_external_function_parameters_repeat1 = 229, - aux_sym_function_parameters_repeat1 = 230, - aux_sym_tuple_repeat1 = 231, - aux_sym__expression_bit_string_repeat1 = 232, - aux_sym_expression_bit_string_segment_options_repeat1 = 233, - aux_sym_anonymous_function_parameters_repeat1 = 234, - aux_sym_case_clauses_repeat1 = 235, - aux_sym_case_clause_patterns_repeat1 = 236, - aux_sym_case_clause_pattern_repeat1 = 237, - aux_sym_record_update_arguments_repeat1 = 238, - aux_sym_arguments_repeat1 = 239, - aux_sym_record_pattern_arguments_repeat1 = 240, - aux_sym__pattern_bit_string_repeat1 = 241, - aux_sym_pattern_bit_string_segment_options_repeat1 = 242, - aux_sym_data_constructors_repeat1 = 243, - aux_sym_data_constructor_arguments_repeat1 = 244, - aux_sym_string_repeat1 = 245, - aux_sym_tuple_type_repeat1 = 246, - aux_sym_type_arguments_repeat1 = 247, - aux_sym_type_parameters_repeat1 = 248, - alias_sym_function_body = 249, + anon_sym_LT_GT = 51, + anon_sym_todo = 52, + anon_sym_panic = 53, + anon_sym_echo = 54, + anon_sym_DOT_DOT = 55, + anon_sym_case = 56, + anon_sym_PIPE = 57, + anon_sym_let = 58, + anon_sym_assert = 59, + anon_sym_use = 60, + anon_sym_LT_DASH = 61, + anon_sym_BANG = 62, + sym_visibility_modifier = 63, + sym_opacity_modifier = 64, + anon_sym_DQUOTE = 65, + anon_sym_DQUOTE2 = 66, + aux_sym_escape_sequence_token1 = 67, + aux_sym_escape_sequence_token2 = 68, + sym_float = 69, + sym__hex = 70, + sym__decimal = 71, + sym__octal = 72, + sym__binary = 73, + anon_sym_binary = 74, + anon_sym_bytes = 75, + anon_sym_int = 76, + anon_sym_float = 77, + anon_sym_bit_string = 78, + anon_sym_bits = 79, + anon_sym_utf8 = 80, + anon_sym_utf16 = 81, + anon_sym_utf32 = 82, + anon_sym_utf8_codepoint = 83, + anon_sym_utf16_codepoint = 84, + anon_sym_utf32_codepoint = 85, + anon_sym_signed = 86, + anon_sym_unsigned = 87, + anon_sym_big = 88, + anon_sym_little = 89, + anon_sym_native = 90, + anon_sym_unit = 91, + sym__discard_name = 92, + sym__name = 93, + sym__upname = 94, + sym_quoted_content = 95, + sym_source_file = 96, + sym__module_statement = 97, + sym_target_group = 98, + sym_target = 99, + sym_attribute = 100, + sym__attribute_arguments = 101, + sym_attribute_value = 102, + sym_import = 103, + sym_module = 104, + sym_unqualified_imports = 105, + sym_unqualified_import = 106, + sym_constant = 107, + sym__constant_value = 108, + sym_constant_tuple = 109, + sym_constant_list = 110, + sym__constant_bit_string = 111, + sym_constant_bit_string_segment = 112, + sym_constant_bit_string_segment_options = 113, + sym__constant_bit_string_segment_option = 114, + sym__constant_bit_string_named_segment_option = 115, + sym__constant_bit_string_segment_option_size = 116, + sym_constant_record = 117, + sym_constant_record_arguments = 118, + sym_constant_record_argument = 119, + sym_constant_field_access = 120, + sym__constant_type = 121, + sym__constant_type_annotation = 122, + sym_constant_tuple_type = 123, + sym_constant_function_type = 124, + sym_constant_function_parameter_types = 125, + sym_constant_type = 126, + sym_constant_type_arguments = 127, + sym_constant_type_argument = 128, + sym_external_type = 129, + sym_external_function = 130, + sym_external_function_parameters = 131, + sym_external_function_parameter = 132, + sym_external_function_body = 133, + sym_function = 134, + sym_function_parameters = 135, + sym_function_parameter = 136, + sym__labeled_discard_param = 137, + sym__discard_param = 138, + sym__labeled_name_param = 139, + sym__name_param = 140, + aux_sym__statement_seq = 141, + sym__statement = 142, + sym__expression = 143, + sym_binary_expression = 144, + sym__expression_unit = 145, + sym_record = 146, + sym_todo = 147, + sym_panic = 148, + sym_pipeline_echo = 149, + sym_echo = 150, + sym_tuple = 151, + sym_list = 152, + sym__expression_bit_string = 153, + sym_expression_bit_string_segment = 154, + sym_expression_bit_string_segment_options = 155, + sym__expression_bit_string_segment_option = 156, + sym__expression_bit_string_named_segment_option = 157, + sym__expression_bit_string_segment_option_size = 158, + sym_anonymous_function = 159, + sym_anonymous_function_parameters = 160, + sym_anonymous_function_parameter = 161, + sym_block = 162, + sym_case = 163, + sym_case_subjects = 164, + sym_case_clauses = 165, + sym_case_clause = 166, + sym_case_clause_patterns = 167, + sym_case_clause_pattern = 168, + sym_case_clause_guard = 169, + sym__case_clause_guard_expression = 170, + sym__case_clause_guard_binary_expression = 171, + sym__case_clause_guard_unit = 172, + sym__case_clause_tuple_access = 173, + sym_let_assert = 174, + sym_assert = 175, + sym_let = 176, + sym_use = 177, + sym_use_assignments = 178, + sym_use_assignment = 179, + sym_boolean_negation = 180, + sym_integer_negation = 181, + sym__assignment = 182, + sym_record_update = 183, + sym_record_update_arguments = 184, + sym_record_update_argument = 185, + sym__maybe_tuple_expression = 186, + sym_tuple_access = 187, + sym__maybe_record_expression = 188, + sym_field_access = 189, + sym__maybe_function_expression = 190, + sym_arguments = 191, + sym_argument = 192, + sym_hole = 193, + sym_function_call = 194, + sym__pattern_expression = 195, + sym__pattern_binary_expression = 196, + sym__pattern = 197, + sym_record_pattern = 198, + sym_record_pattern_arguments = 199, + sym_record_pattern_argument = 200, + sym_pattern_spread = 201, + sym_tuple_pattern = 202, + sym__pattern_bit_string = 203, + sym_pattern_bit_string_segment = 204, + sym_pattern_bit_string_segment_options = 205, + sym__pattern_bit_string_segment_option = 206, + sym__pattern_bit_string_named_segment_option = 207, + sym__pattern_bit_string_segment_option_size = 208, + sym__pattern_bit_string_segment_argument = 209, + sym_list_pattern = 210, + sym_list_pattern_tail = 211, + sym_type_definition = 212, + sym_data_constructors = 213, + sym_data_constructor = 214, + sym_data_constructor_arguments = 215, + sym_data_constructor_argument = 216, + sym_type_alias = 217, + sym_string = 218, + sym_escape_sequence = 219, + sym_integer = 220, + sym__bit_string_segment_option = 221, + sym__type = 222, + sym__type_annotation = 223, + sym_type_hole = 224, + sym_tuple_type = 225, + sym_function_type = 226, + sym_function_parameter_types = 227, + sym_type = 228, + sym_type_arguments = 229, + sym_type_argument = 230, + sym_type_var = 231, + sym_type_name = 232, + sym_type_parameters = 233, + sym_type_parameter = 234, + sym_identifier = 235, + sym_label = 236, + sym_discard = 237, + sym_type_identifier = 238, + sym_remote_type_identifier = 239, + sym_constructor_name = 240, + sym_remote_constructor_name = 241, + aux_sym_source_file_repeat1 = 242, + aux_sym_target_group_repeat1 = 243, + aux_sym__attribute_arguments_repeat1 = 244, + aux_sym_module_repeat1 = 245, + aux_sym_unqualified_imports_repeat1 = 246, + aux_sym_constant_tuple_repeat1 = 247, + aux_sym__constant_bit_string_repeat1 = 248, + aux_sym_constant_bit_string_segment_options_repeat1 = 249, + aux_sym_constant_record_arguments_repeat1 = 250, + aux_sym_constant_tuple_type_repeat1 = 251, + aux_sym_constant_type_arguments_repeat1 = 252, + aux_sym_external_function_parameters_repeat1 = 253, + aux_sym_function_parameters_repeat1 = 254, + aux_sym_tuple_repeat1 = 255, + aux_sym__expression_bit_string_repeat1 = 256, + aux_sym_expression_bit_string_segment_options_repeat1 = 257, + aux_sym_anonymous_function_parameters_repeat1 = 258, + aux_sym_case_clauses_repeat1 = 259, + aux_sym_case_clause_patterns_repeat1 = 260, + aux_sym_case_clause_pattern_repeat1 = 261, + aux_sym_use_assignments_repeat1 = 262, + aux_sym_record_update_arguments_repeat1 = 263, + aux_sym_arguments_repeat1 = 264, + aux_sym_record_pattern_arguments_repeat1 = 265, + aux_sym__pattern_bit_string_repeat1 = 266, + aux_sym_pattern_bit_string_segment_options_repeat1 = 267, + aux_sym_data_constructors_repeat1 = 268, + aux_sym_data_constructor_arguments_repeat1 = 269, + aux_sym_string_repeat1 = 270, + aux_sym_tuple_type_repeat1 = 271, + aux_sym_type_arguments_repeat1 = 272, + aux_sym_type_parameters_repeat1 = 273, }; static const char * const ts_symbol_names[] = { @@ -286,28 +310,28 @@ static const char * const ts_symbol_names[] = { [anon_sym_RBRACE] = "}", [anon_sym_erlang] = "erlang", [anon_sym_javascript] = "javascript", + [anon_sym_AT] = "@", + [anon_sym_LPAREN] = "(", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [anon_sym_COLON] = ":", [anon_sym_import] = "import", [anon_sym_DOT] = ".", [anon_sym_as] = "as", [anon_sym_SLASH] = "/", - [anon_sym_COMMA] = ",", + [anon_sym_type] = "type", [anon_sym_const] = "const", [anon_sym_EQ] = "=", [anon_sym_POUND] = "#", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_LT_LT] = "<<", [anon_sym_GT_GT] = ">>", - [anon_sym_COLON] = ":", [anon_sym_DASH] = "-", [anon_sym_size] = "size", - [anon_sym_external] = "external", - [anon_sym_type] = "type", [anon_sym_fn] = "fn", [anon_sym_DASH_GT] = "->", - [anon_sym_try] = "try", + [anon_sym_external] = "external", [anon_sym_PIPE_PIPE] = "||", [anon_sym_AMP_AMP] = "&&", [anon_sym_EQ_EQ] = "==", @@ -328,18 +352,24 @@ static const char * const ts_symbol_names[] = { [anon_sym_STAR_DOT] = "*.", [anon_sym_SLASH_DOT] = "/.", [anon_sym_PERCENT] = "%", + [anon_sym_LT_GT] = "<>", [anon_sym_todo] = "todo", + [anon_sym_panic] = "panic", + [anon_sym_echo] = "echo", [anon_sym_DOT_DOT] = "..", [anon_sym_case] = "case", [anon_sym_PIPE] = "|", [anon_sym_let] = "let", [anon_sym_assert] = "assert", + [anon_sym_use] = "use", + [anon_sym_LT_DASH] = "<-", [anon_sym_BANG] = "!", [sym_visibility_modifier] = "visibility_modifier", [sym_opacity_modifier] = "opacity_modifier", [anon_sym_DQUOTE] = "\"", [anon_sym_DQUOTE2] = "\"", - [sym_escape_sequence] = "escape_sequence", + [aux_sym_escape_sequence_token1] = "escape_sequence_token1", + [aux_sym_escape_sequence_token2] = "escape_sequence_token2", [sym_float] = "float", [sym__hex] = "_hex", [sym__decimal] = "_decimal", @@ -368,9 +398,12 @@ static const char * const ts_symbol_names[] = { [sym__upname] = "_upname", [sym_quoted_content] = "quoted_content", [sym_source_file] = "source_file", - [sym__statement] = "_statement", + [sym__module_statement] = "_module_statement", [sym_target_group] = "target_group", [sym_target] = "target", + [sym_attribute] = "attribute", + [sym__attribute_arguments] = "arguments", + [sym_attribute_value] = "attribute_value", [sym_import] = "import", [sym_module] = "module", [sym_unqualified_imports] = "unqualified_imports", @@ -388,9 +421,12 @@ static const char * const ts_symbol_names[] = { [sym_constant_record] = "record", [sym_constant_record_arguments] = "arguments", [sym_constant_record_argument] = "argument", + [sym_constant_field_access] = "field_access", [sym__constant_type] = "_constant_type", [sym__constant_type_annotation] = "_constant_type_annotation", [sym_constant_tuple_type] = "tuple_type", + [sym_constant_function_type] = "function_type", + [sym_constant_function_parameter_types] = "function_parameter_types", [sym_constant_type] = "type", [sym_constant_type_arguments] = "type_arguments", [sym_constant_type_argument] = "type_argument", @@ -406,13 +442,16 @@ static const char * const ts_symbol_names[] = { [sym__discard_param] = "_discard_param", [sym__labeled_name_param] = "_labeled_name_param", [sym__name_param] = "_name_param", - [aux_sym__expression_seq] = "_expression_seq", - [sym_try] = "try", + [aux_sym__statement_seq] = "_statement_seq", + [sym__statement] = "_statement", [sym__expression] = "_expression", [sym_binary_expression] = "binary_expression", [sym__expression_unit] = "_expression_unit", [sym_record] = "record", [sym_todo] = "todo", + [sym_panic] = "panic", + [sym_pipeline_echo] = "pipeline_echo", + [sym_echo] = "echo", [sym_tuple] = "tuple", [sym_list] = "list", [sym__expression_bit_string] = "bit_string", @@ -424,7 +463,7 @@ static const char * const ts_symbol_names[] = { [sym_anonymous_function] = "anonymous_function", [sym_anonymous_function_parameters] = "function_parameters", [sym_anonymous_function_parameter] = "function_parameter", - [sym_expression_group] = "expression_group", + [sym_block] = "block", [sym_case] = "case", [sym_case_subjects] = "case_subjects", [sym_case_clauses] = "case_clauses", @@ -436,9 +475,14 @@ static const char * const ts_symbol_names[] = { [sym__case_clause_guard_binary_expression] = "binary_expression", [sym__case_clause_guard_unit] = "_case_clause_guard_unit", [sym__case_clause_tuple_access] = "tuple_access", - [sym_let] = "let", + [sym_let_assert] = "let_assert", [sym_assert] = "assert", - [sym_negation] = "negation", + [sym_let] = "let", + [sym_use] = "use", + [sym_use_assignments] = "use_assignments", + [sym_use_assignment] = "use_assignment", + [sym_boolean_negation] = "boolean_negation", + [sym_integer_negation] = "integer_negation", [sym__assignment] = "_assignment", [sym_record_update] = "record_update", [sym_record_update_arguments] = "record_update_arguments", @@ -452,6 +496,8 @@ static const char * const ts_symbol_names[] = { [sym_argument] = "argument", [sym_hole] = "hole", [sym_function_call] = "function_call", + [sym__pattern_expression] = "_pattern_expression", + [sym__pattern_binary_expression] = "binary_expression", [sym__pattern] = "_pattern", [sym_record_pattern] = "record_pattern", [sym_record_pattern_arguments] = "record_pattern_arguments", @@ -474,6 +520,7 @@ static const char * const ts_symbol_names[] = { [sym_data_constructor_argument] = "data_constructor_argument", [sym_type_alias] = "type_alias", [sym_string] = "string", + [sym_escape_sequence] = "escape_sequence", [sym_integer] = "integer", [sym__bit_string_segment_option] = "bit_string_segment_option", [sym__type] = "_type", @@ -498,6 +545,7 @@ static const char * const ts_symbol_names[] = { [sym_remote_constructor_name] = "remote_constructor_name", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_target_group_repeat1] = "target_group_repeat1", + [aux_sym__attribute_arguments_repeat1] = "_attribute_arguments_repeat1", [aux_sym_module_repeat1] = "module_repeat1", [aux_sym_unqualified_imports_repeat1] = "unqualified_imports_repeat1", [aux_sym_constant_tuple_repeat1] = "constant_tuple_repeat1", @@ -515,6 +563,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_case_clauses_repeat1] = "case_clauses_repeat1", [aux_sym_case_clause_patterns_repeat1] = "case_clause_patterns_repeat1", [aux_sym_case_clause_pattern_repeat1] = "case_clause_pattern_repeat1", + [aux_sym_use_assignments_repeat1] = "use_assignments_repeat1", [aux_sym_record_update_arguments_repeat1] = "record_update_arguments_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_record_pattern_arguments_repeat1] = "record_pattern_arguments_repeat1", @@ -526,7 +575,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", - [alias_sym_function_body] = "function_body", }; static const TSSymbol ts_symbol_map[] = { @@ -539,28 +587,28 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_erlang] = anon_sym_erlang, [anon_sym_javascript] = anon_sym_javascript, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_COLON] = anon_sym_COLON, [anon_sym_import] = anon_sym_import, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_as] = anon_sym_as, [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_type] = anon_sym_type, [anon_sym_const] = anon_sym_const, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_LT_LT] = anon_sym_LT_LT, [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_COLON] = anon_sym_COLON, [anon_sym_DASH] = anon_sym_DASH, [anon_sym_size] = anon_sym_size, - [anon_sym_external] = anon_sym_external, - [anon_sym_type] = anon_sym_type, [anon_sym_fn] = anon_sym_fn, [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_try] = anon_sym_try, + [anon_sym_external] = anon_sym_external, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, @@ -581,18 +629,24 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_STAR_DOT] = anon_sym_STAR_DOT, [anon_sym_SLASH_DOT] = anon_sym_SLASH_DOT, [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_LT_GT] = anon_sym_LT_GT, [anon_sym_todo] = anon_sym_todo, + [anon_sym_panic] = anon_sym_panic, + [anon_sym_echo] = anon_sym_echo, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [anon_sym_case] = anon_sym_case, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_let] = anon_sym_let, [anon_sym_assert] = anon_sym_assert, + [anon_sym_use] = anon_sym_use, + [anon_sym_LT_DASH] = anon_sym_LT_DASH, [anon_sym_BANG] = anon_sym_BANG, [sym_visibility_modifier] = sym_visibility_modifier, [sym_opacity_modifier] = sym_opacity_modifier, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [anon_sym_DQUOTE2] = anon_sym_DQUOTE, - [sym_escape_sequence] = sym_escape_sequence, + [aux_sym_escape_sequence_token1] = aux_sym_escape_sequence_token1, + [aux_sym_escape_sequence_token2] = aux_sym_escape_sequence_token2, [sym_float] = sym_float, [sym__hex] = sym__hex, [sym__decimal] = sym__decimal, @@ -621,9 +675,12 @@ static const TSSymbol ts_symbol_map[] = { [sym__upname] = sym__upname, [sym_quoted_content] = sym_quoted_content, [sym_source_file] = sym_source_file, - [sym__statement] = sym__statement, + [sym__module_statement] = sym__module_statement, [sym_target_group] = sym_target_group, [sym_target] = sym_target, + [sym_attribute] = sym_attribute, + [sym__attribute_arguments] = sym_arguments, + [sym_attribute_value] = sym_attribute_value, [sym_import] = sym_import, [sym_module] = sym_module, [sym_unqualified_imports] = sym_unqualified_imports, @@ -641,9 +698,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_constant_record] = sym_record, [sym_constant_record_arguments] = sym_arguments, [sym_constant_record_argument] = sym_argument, + [sym_constant_field_access] = sym_field_access, [sym__constant_type] = sym__constant_type, [sym__constant_type_annotation] = sym__constant_type_annotation, [sym_constant_tuple_type] = sym_tuple_type, + [sym_constant_function_type] = sym_function_type, + [sym_constant_function_parameter_types] = sym_function_parameter_types, [sym_constant_type] = sym_type, [sym_constant_type_arguments] = sym_type_arguments, [sym_constant_type_argument] = sym_type_argument, @@ -659,13 +719,16 @@ static const TSSymbol ts_symbol_map[] = { [sym__discard_param] = sym__discard_param, [sym__labeled_name_param] = sym__labeled_name_param, [sym__name_param] = sym__name_param, - [aux_sym__expression_seq] = aux_sym__expression_seq, - [sym_try] = sym_try, + [aux_sym__statement_seq] = aux_sym__statement_seq, + [sym__statement] = sym__statement, [sym__expression] = sym__expression, [sym_binary_expression] = sym_binary_expression, [sym__expression_unit] = sym__expression_unit, [sym_record] = sym_record, [sym_todo] = sym_todo, + [sym_panic] = sym_panic, + [sym_pipeline_echo] = sym_pipeline_echo, + [sym_echo] = sym_echo, [sym_tuple] = sym_tuple, [sym_list] = sym_list, [sym__expression_bit_string] = sym__constant_bit_string, @@ -677,7 +740,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_anonymous_function] = sym_anonymous_function, [sym_anonymous_function_parameters] = sym_function_parameters, [sym_anonymous_function_parameter] = sym_function_parameter, - [sym_expression_group] = sym_expression_group, + [sym_block] = sym_block, [sym_case] = sym_case, [sym_case_subjects] = sym_case_subjects, [sym_case_clauses] = sym_case_clauses, @@ -689,9 +752,14 @@ static const TSSymbol ts_symbol_map[] = { [sym__case_clause_guard_binary_expression] = sym_binary_expression, [sym__case_clause_guard_unit] = sym__case_clause_guard_unit, [sym__case_clause_tuple_access] = sym_tuple_access, - [sym_let] = sym_let, + [sym_let_assert] = sym_let_assert, [sym_assert] = sym_assert, - [sym_negation] = sym_negation, + [sym_let] = sym_let, + [sym_use] = sym_use, + [sym_use_assignments] = sym_use_assignments, + [sym_use_assignment] = sym_use_assignment, + [sym_boolean_negation] = sym_boolean_negation, + [sym_integer_negation] = sym_integer_negation, [sym__assignment] = sym__assignment, [sym_record_update] = sym_record_update, [sym_record_update_arguments] = sym_record_update_arguments, @@ -705,6 +773,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_argument] = sym_argument, [sym_hole] = sym_hole, [sym_function_call] = sym_function_call, + [sym__pattern_expression] = sym__pattern_expression, + [sym__pattern_binary_expression] = sym_binary_expression, [sym__pattern] = sym__pattern, [sym_record_pattern] = sym_record_pattern, [sym_record_pattern_arguments] = sym_record_pattern_arguments, @@ -727,6 +797,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_data_constructor_argument] = sym_data_constructor_argument, [sym_type_alias] = sym_type_alias, [sym_string] = sym_string, + [sym_escape_sequence] = sym_escape_sequence, [sym_integer] = sym_integer, [sym__bit_string_segment_option] = sym__constant_bit_string_segment_option_size, [sym__type] = sym__type, @@ -751,6 +822,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_remote_constructor_name] = sym_remote_constructor_name, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_target_group_repeat1] = aux_sym_target_group_repeat1, + [aux_sym__attribute_arguments_repeat1] = aux_sym__attribute_arguments_repeat1, [aux_sym_module_repeat1] = aux_sym_module_repeat1, [aux_sym_unqualified_imports_repeat1] = aux_sym_unqualified_imports_repeat1, [aux_sym_constant_tuple_repeat1] = aux_sym_constant_tuple_repeat1, @@ -768,6 +840,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_case_clauses_repeat1] = aux_sym_case_clauses_repeat1, [aux_sym_case_clause_patterns_repeat1] = aux_sym_case_clause_patterns_repeat1, [aux_sym_case_clause_pattern_repeat1] = aux_sym_case_clause_pattern_repeat1, + [aux_sym_use_assignments_repeat1] = aux_sym_use_assignments_repeat1, [aux_sym_record_update_arguments_repeat1] = aux_sym_record_update_arguments_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_record_pattern_arguments_repeat1] = aux_sym_record_pattern_arguments_repeat1, @@ -779,7 +852,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, - [alias_sym_function_body] = alias_sym_function_body, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -819,79 +891,79 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_import] = { + [anon_sym_AT] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { + [anon_sym_LPAREN] = { .visible = true, .named = false, }, - [anon_sym_as] = { + [anon_sym_COMMA] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_RPAREN] = { .visible = true, .named = false, }, - [anon_sym_COMMA] = { + [anon_sym_COLON] = { .visible = true, .named = false, }, - [anon_sym_const] = { + [anon_sym_import] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_POUND] = { + [anon_sym_as] = { .visible = true, .named = false, }, - [anon_sym_LPAREN] = { + [anon_sym_SLASH] = { .visible = true, .named = false, }, - [anon_sym_RPAREN] = { + [anon_sym_type] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [anon_sym_const] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_EQ] = { .visible = true, .named = false, }, - [anon_sym_LT_LT] = { + [anon_sym_POUND] = { .visible = true, .named = false, }, - [anon_sym_GT_GT] = { + [anon_sym_LBRACK] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { + [anon_sym_RBRACK] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { + [anon_sym_LT_LT] = { .visible = true, .named = false, }, - [anon_sym_size] = { + [anon_sym_GT_GT] = { .visible = true, .named = false, }, - [anon_sym_external] = { + [anon_sym_DASH] = { .visible = true, .named = false, }, - [anon_sym_type] = { + [anon_sym_size] = { .visible = true, .named = false, }, @@ -903,7 +975,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_try] = { + [anon_sym_external] = { .visible = true, .named = false, }, @@ -987,10 +1059,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, [anon_sym_todo] = { .visible = true, .named = false, }, + [anon_sym_panic] = { + .visible = true, + .named = false, + }, + [anon_sym_echo] = { + .visible = true, + .named = false, + }, [anon_sym_DOT_DOT] = { .visible = true, .named = false, @@ -1011,6 +1095,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_use] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_DASH] = { + .visible = true, + .named = false, + }, [anon_sym_BANG] = { .visible = true, .named = false, @@ -1031,9 +1123,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_escape_sequence] = { - .visible = true, - .named = true, + [aux_sym_escape_sequence_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_escape_sequence_token2] = { + .visible = false, + .named = false, }, [sym_float] = { .visible = true, @@ -1147,7 +1243,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__statement] = { + [sym__module_statement] = { .visible = false, .named = true, }, @@ -1159,6 +1255,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym__attribute_arguments] = { + .visible = true, + .named = true, + }, + [sym_attribute_value] = { + .visible = true, + .named = true, + }, [sym_import] = { .visible = true, .named = true, @@ -1227,6 +1335,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_constant_field_access] = { + .visible = true, + .named = true, + }, [sym__constant_type] = { .visible = false, .named = true, @@ -1239,6 +1351,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_constant_function_type] = { + .visible = true, + .named = true, + }, + [sym_constant_function_parameter_types] = { + .visible = true, + .named = true, + }, [sym_constant_type] = { .visible = true, .named = true, @@ -1299,12 +1419,12 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym__expression_seq] = { + [aux_sym__statement_seq] = { .visible = false, .named = false, }, - [sym_try] = { - .visible = true, + [sym__statement] = { + .visible = false, .named = true, }, [sym__expression] = { @@ -1327,6 +1447,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_panic] = { + .visible = true, + .named = true, + }, + [sym_pipeline_echo] = { + .visible = true, + .named = true, + }, + [sym_echo] = { + .visible = true, + .named = true, + }, [sym_tuple] = { .visible = true, .named = true, @@ -1371,7 +1503,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_expression_group] = { + [sym_block] = { .visible = true, .named = true, }, @@ -1419,7 +1551,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_let] = { + [sym_let_assert] = { .visible = true, .named = true, }, @@ -1427,7 +1559,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_negation] = { + [sym_let] = { + .visible = true, + .named = true, + }, + [sym_use] = { + .visible = true, + .named = true, + }, + [sym_use_assignments] = { + .visible = true, + .named = true, + }, + [sym_use_assignment] = { + .visible = true, + .named = true, + }, + [sym_boolean_negation] = { + .visible = true, + .named = true, + }, + [sym_integer_negation] = { .visible = true, .named = true, }, @@ -1483,6 +1635,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__pattern_expression] = { + .visible = false, + .named = true, + }, + [sym__pattern_binary_expression] = { + .visible = true, + .named = true, + }, [sym__pattern] = { .visible = false, .named = true, @@ -1571,6 +1731,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, [sym_integer] = { .visible = true, .named = true, @@ -1667,6 +1831,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__attribute_arguments_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_module_repeat1] = { .visible = false, .named = false, @@ -1735,6 +1903,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_use_assignments_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_record_update_arguments_repeat1] = { .visible = false, .named = false, @@ -1779,44 +1951,41 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_function_body] = { - .visible = true, - .named = true, - }, }; enum { field_alias = 1, field_arguments = 2, field_assign = 3, - field_body = 4, - field_clauses = 5, - field_constructor = 6, - field_field = 7, - field_function = 8, - field_guard = 9, - field_imports = 10, - field_index = 11, - field_label = 12, - field_left = 13, - field_message = 14, - field_module = 15, - field_name = 16, - field_operator = 17, - field_options = 18, - field_parameter_types = 19, - field_parameters = 20, - field_pattern = 21, - field_patterns = 22, - field_record = 23, - field_return_type = 24, - field_right = 25, - field_spread = 26, - field_subjects = 27, - field_target = 28, - field_tuple = 29, - field_type = 30, - field_value = 31, + field_assignments = 4, + field_body = 5, + field_clauses = 6, + field_constructor = 7, + field_field = 8, + field_function = 9, + field_guard = 10, + field_imports = 11, + field_index = 12, + field_label = 13, + field_left = 14, + field_message = 15, + field_module = 16, + field_name = 17, + field_operator = 18, + field_options = 19, + field_parameter_types = 20, + field_parameters = 21, + field_pattern = 22, + field_patterns = 23, + field_record = 24, + field_return_type = 25, + field_right = 26, + field_spread = 27, + field_subjects = 28, + field_target = 29, + field_tuple = 30, + field_type = 31, + field_value = 32, }; static const char * const ts_field_names[] = { @@ -1824,6 +1993,7 @@ static const char * const ts_field_names[] = { [field_alias] = "alias", [field_arguments] = "arguments", [field_assign] = "assign", + [field_assignments] = "assignments", [field_body] = "body", [field_clauses] = "clauses", [field_constructor] = "constructor", @@ -1858,273 +2028,333 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 4}, - [5] = {.index = 7, .length = 2}, - [6] = {.index = 9, .length = 2}, - [7] = {.index = 11, .length = 2}, - [8] = {.index = 13, .length = 1}, - [9] = {.index = 14, .length = 2}, - [10] = {.index = 16, .length = 3}, - [11] = {.index = 19, .length = 2}, - [12] = {.index = 21, .length = 2}, - [13] = {.index = 23, .length = 2}, - [14] = {.index = 25, .length = 1}, - [15] = {.index = 26, .length = 2}, - [16] = {.index = 28, .length = 2}, - [17] = {.index = 30, .length = 2}, - [18] = {.index = 32, .length = 1}, - [19] = {.index = 33, .length = 3}, - [20] = {.index = 36, .length = 2}, - [21] = {.index = 38, .length = 2}, - [22] = {.index = 40, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 4}, + [6] = {.index = 8, .length = 3}, + [7] = {.index = 11, .length = 1}, + [8] = {.index = 12, .length = 1}, + [9] = {.index = 13, .length = 2}, + [10] = {.index = 15, .length = 2}, + [11] = {.index = 17, .length = 2}, + [12] = {.index = 19, .length = 2}, + [13] = {.index = 21, .length = 1}, + [14] = {.index = 22, .length = 2}, + [15] = {.index = 24, .length = 2}, + [16] = {.index = 26, .length = 1}, + [17] = {.index = 27, .length = 2}, + [18] = {.index = 29, .length = 4}, + [19] = {.index = 33, .length = 1}, + [20] = {.index = 34, .length = 2}, + [21] = {.index = 36, .length = 3}, + [22] = {.index = 39, .length = 2}, [23] = {.index = 41, .length = 2}, - [24] = {.index = 43, .length = 3}, - [25] = {.index = 46, .length = 2}, - [26] = {.index = 48, .length = 1}, - [27] = {.index = 49, .length = 1}, - [28] = {.index = 50, .length = 3}, - [29] = {.index = 53, .length = 3}, - [30] = {.index = 56, .length = 1}, - [31] = {.index = 57, .length = 1}, + [24] = {.index = 43, .length = 2}, + [25] = {.index = 45, .length = 1}, + [26] = {.index = 46, .length = 2}, + [27] = {.index = 48, .length = 2}, + [28] = {.index = 50, .length = 1}, + [29] = {.index = 51, .length = 2}, + [30] = {.index = 53, .length = 3}, + [31] = {.index = 56, .length = 2}, [32] = {.index = 58, .length = 2}, [33] = {.index = 60, .length = 3}, - [34] = {.index = 63, .length = 2}, - [35] = {.index = 65, .length = 1}, - [36] = {.index = 66, .length = 2}, - [37] = {.index = 68, .length = 2}, - [38] = {.index = 70, .length = 4}, - [39] = {.index = 74, .length = 4}, - [40] = {.index = 78, .length = 2}, - [41] = {.index = 80, .length = 4}, - [42] = {.index = 84, .length = 2}, - [43] = {.index = 86, .length = 2}, - [44] = {.index = 88, .length = 3}, - [45] = {.index = 91, .length = 1}, - [46] = {.index = 92, .length = 1}, - [47] = {.index = 93, .length = 3}, - [48] = {.index = 96, .length = 2}, - [49] = {.index = 98, .length = 3}, - [50] = {.index = 101, .length = 3}, - [51] = {.index = 104, .length = 2}, - [52] = {.index = 106, .length = 2}, - [53] = {.index = 108, .length = 3}, - [54] = {.index = 111, .length = 2}, - [55] = {.index = 113, .length = 1}, - [56] = {.index = 114, .length = 2}, - [57] = {.index = 116, .length = 2}, - [58] = {.index = 118, .length = 3}, - [59] = {.index = 121, .length = 3}, - [60] = {.index = 124, .length = 3}, - [61] = {.index = 127, .length = 3}, - [62] = {.index = 130, .length = 4}, - [63] = {.index = 134, .length = 4}, - [64] = {.index = 138, .length = 4}, - [65] = {.index = 130, .length = 4}, + [34] = {.index = 63, .length = 1}, + [35] = {.index = 64, .length = 1}, + [36] = {.index = 65, .length = 2}, + [37] = {.index = 67, .length = 3}, + [38] = {.index = 70, .length = 2}, + [39] = {.index = 72, .length = 2}, + [40] = {.index = 74, .length = 2}, + [41] = {.index = 76, .length = 2}, + [42] = {.index = 78, .length = 1}, + [43] = {.index = 79, .length = 3}, + [44] = {.index = 82, .length = 1}, + [45] = {.index = 83, .length = 3}, + [46] = {.index = 86, .length = 3}, + [47] = {.index = 89, .length = 2}, + [48] = {.index = 91, .length = 3}, + [49] = {.index = 94, .length = 1}, + [50] = {.index = 95, .length = 2}, + [51] = {.index = 97, .length = 2}, + [52] = {.index = 99, .length = 1}, + [53] = {.index = 100, .length = 2}, + [54] = {.index = 102, .length = 4}, + [55] = {.index = 106, .length = 5}, + [56] = {.index = 111, .length = 4}, + [57] = {.index = 115, .length = 2}, + [58] = {.index = 117, .length = 3}, + [59] = {.index = 120, .length = 2}, + [60] = {.index = 122, .length = 3}, + [61] = {.index = 125, .length = 1}, + [62] = {.index = 126, .length = 1}, + [63] = {.index = 127, .length = 4}, + [64] = {.index = 131, .length = 2}, + [65] = {.index = 133, .length = 2}, + [66] = {.index = 135, .length = 2}, + [67] = {.index = 137, .length = 3}, + [68] = {.index = 140, .length = 3}, + [69] = {.index = 143, .length = 3}, + [70] = {.index = 146, .length = 2}, + [71] = {.index = 148, .length = 2}, + [72] = {.index = 150, .length = 1}, + [73] = {.index = 151, .length = 2}, + [74] = {.index = 153, .length = 3}, + [75] = {.index = 156, .length = 4}, + [76] = {.index = 160, .length = 3}, + [77] = {.index = 163, .length = 2}, + [78] = {.index = 165, .length = 4}, + [79] = {.index = 169, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_name, 0}, [1] = - {field_module, 1}, + {field_name, 1}, [2] = - {field_value, 0}, + {field_module, 1}, [3] = + {field_value, 0}, + [4] = {field_assign, 1, .inherited = true}, {field_pattern, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [7] = + [8] = + {field_left, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + {field_right, 0, .inherited = true}, + [11] = + {field_value, 1}, + [12] = + {field_assign, 0, .inherited = true}, + [13] = {field_arguments, 1}, {field_function, 0}, - [9] = + [15] = {field_arguments, 1}, {field_name, 0}, - [11] = + [17] = + {field_arguments, 2}, + {field_name, 1}, + [19] = {field_name, 0}, {field_parameters, 1}, - [13] = + [21] = {field_name, 0, .inherited = true}, - [14] = + [22] = + {field_body, 2}, + {field_parameters, 1}, + [24] = + {field_name, 1}, + {field_parameters, 2}, + [26] = + {field_message, 2}, + [27] = {field_assign, 0, .inherited = true}, {field_value, 0}, - [16] = + [29] = + {field_assign, 2, .inherited = true}, + {field_pattern, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + {field_value, 2, .inherited = true}, + [33] = + {field_value, 2}, + [34] = + {field_assign, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [36] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [19] = + [39] = {field_index, 2}, {field_tuple, 0}, - [21] = + [41] = {field_field, 2}, {field_record, 0}, - [23] = + [43] = {field_module, 0}, {field_name, 2}, - [25] = + [45] = {field_target, 1}, - [26] = + [46] = {field_imports, 3}, {field_module, 1}, - [28] = + [48] = {field_alias, 3}, {field_module, 1}, - [30] = + [50] = + {field_type, 1}, + [51] = {field_name, 1}, {field_value, 3}, - [32] = - {field_type, 1}, - [33] = + [53] = {field_options, 1}, {field_options, 2}, {field_value, 0}, - [36] = + [56] = {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [38] = + [58] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, - [40] = + [60] = + {field_body, 3}, + {field_name, 1}, + {field_parameters, 2}, + [63] = + {field_subjects, 1}, + [64] = {field_assign, 1, .inherited = true}, - [41] = + [65] = {field_assign, 1}, {field_assign, 2}, - [43] = - {field_assign, 1, .inherited = true}, - {field_pattern, 1}, - {field_value, 3}, - [46] = + [67] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, - [48] = - {field_message, 2}, - [49] = - {field_assign, 0, .inherited = true}, - [50] = + {field_value, 2}, + [70] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, - {field_value, 2}, - [53] = + [72] = + {field_message, 3}, + {field_value, 1}, + [74] = + {field_assignments, 1}, + {field_value, 3}, + [76] = + {field_name, 2}, + {field_parameters, 3}, + [78] = + {field_label, 0}, + [79] = {field_name, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [56] = + [82] = {field_spread, 3}, - [57] = - {field_type, 0}, - [58] = - {field_body, 3}, + [83] = + {field_body, 4}, {field_parameters, 1}, - [60] = + {field_return_type, 3}, + [86] = {field_label, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [63] = + [89] = {field_label, 0}, {field_name, 1}, - [65] = - {field_assign, 2, .inherited = true}, - [66] = + [91] = + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [94] = + {field_type, 0}, + [95] = + {field_clauses, 3}, + {field_subjects, 1}, + [97] = + {field_assign, 0, .inherited = true}, {field_assign, 1, .inherited = true}, + [99] = {field_assign, 2, .inherited = true}, - [68] = - {field_assign, 0, .inherited = true}, + [100] = {field_assign, 1, .inherited = true}, - [70] = + {field_assign, 2, .inherited = true}, + [102] = {field_assign, 0, .inherited = true}, {field_options, 1}, {field_options, 2}, {field_value, 0}, - [74] = - {field_assign, 1, .inherited = true}, - {field_pattern, 1}, + [106] = + {field_assign, 2, .inherited = true}, + {field_message, 4}, + {field_pattern, 2, .inherited = true}, {field_type, 2, .inherited = true}, - {field_value, 4}, - [78] = - {field_clauses, 3}, - {field_subjects, 1}, - [80] = + {field_value, 2, .inherited = true}, + [111] = {field_assign, 0, .inherited = true}, {field_pattern, 0}, {field_type, 1, .inherited = true}, {field_value, 3}, - [84] = + [115] = {field_name, 2}, {field_value, 4}, - [86] = + [117] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3}, + [120] = {field_label, 0}, {field_value, 2}, - [88] = + [122] = {field_alias, 5}, {field_imports, 3}, {field_module, 1}, - [91] = - {field_spread, 4}, - [92] = + [125] = {field_return_type, 2}, - [93] = - {field_body, 4}, + [126] = + {field_spread, 4}, + [127] = + {field_body, 5}, {field_name, 1}, {field_parameters, 2}, - [96] = + {field_return_type, 4}, + [131] = + {field_index, 0, .inherited = true}, + {field_tuple, 0, .inherited = true}, + [133] = + {field_patterns, 0}, + {field_value, 2}, + [135] = {field_assign, 2, .inherited = true}, {field_assign, 3, .inherited = true}, - [98] = + [137] = {field_assign, 2, .inherited = true}, {field_label, 0}, {field_pattern, 2}, - [101] = - {field_left, 0, .inherited = true}, - {field_operator, 0, .inherited = true}, - {field_right, 0, .inherited = true}, - [104] = - {field_index, 0, .inherited = true}, - {field_tuple, 0, .inherited = true}, - [106] = - {field_patterns, 0}, - {field_value, 2}, - [108] = + [140] = {field_name, 2}, {field_type, 3, .inherited = true}, {field_value, 5}, - [111] = + [143] = + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [146] = {field_alias, 2}, {field_name, 0}, - [113] = + [148] = + {field_parameter_types, 1}, + {field_return_type, 3}, + [150] = {field_spread, 5}, - [114] = + [151] = {field_name, 0}, {field_type, 2}, - [116] = - {field_parameter_types, 1}, - {field_return_type, 3}, - [118] = - {field_body, 5}, - {field_parameters, 1}, - {field_return_type, 3}, - [121] = + [153] = {field_guard, 1}, {field_patterns, 0}, {field_value, 3}, - [124] = - {field_body, 5}, + [156] = + {field_body, 6}, {field_name, 2}, {field_parameters, 3}, - [127] = + {field_return_type, 5}, + [160] = {field_arguments, 5}, {field_constructor, 0}, {field_spread, 3}, - [130] = + [163] = + {field_alias, 3}, + {field_name, 1}, + [165] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [134] = - {field_body, 6}, - {field_name, 1}, - {field_parameters, 2}, - {field_return_type, 4}, - [138] = + [169] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, @@ -2133,30 +2363,9 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [32] = { - [3] = alias_sym_function_body, - }, - [47] = { - [4] = alias_sym_function_body, - }, - [58] = { - [5] = alias_sym_function_body, - }, - [60] = { - [5] = alias_sym_function_body, - }, - [63] = { - [6] = alias_sym_function_body, - }, - [65] = { - [7] = alias_sym_function_body, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym__expression_seq, 2, - aux_sym__expression_seq, - alias_sym_function_body, 0, }; @@ -2165,2633 +2374,3065 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(154); + if (eof) ADVANCE(175); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(151) - if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(242); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + lookahead == ' ') SKIP(170) + if (lookahead == '\r') SKIP(170) + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(268); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'b') ADVANCE(341); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(386); - if (lookahead == 'f') ADVANCE(351); - if (lookahead == 'i') ADVANCE(332); - if (lookahead == 'j') ADVANCE(295); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(366); - if (lookahead == 'u') ADVANCE(356); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(231); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(216); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(127); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(336); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'j') ADVANCE(323); + if (lookahead == 'l') ADVANCE(359); + if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 's') ADVANCE(378); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(393); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(256); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 1: - if (lookahead == '&') ADVANCE(206); + if (lookahead == '&') ADVANCE(228); END_STATE(); case 2: - if (lookahead == '.') ADVANCE(228); + if (lookahead == '-') ADVANCE(167); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(272); END_STATE(); case 3: - if (lookahead == '.') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '<') ADVANCE(211); END_STATE(); case 4: - if (lookahead == '/') ADVANCE(158); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '>') ADVANCE(249); END_STATE(); case 5: - if (lookahead == '1') ADVANCE(7); - if (lookahead == '3') ADVANCE(6); - if (lookahead == '8') ADVANCE(265); + if (lookahead == '.') ADVANCE(253); END_STATE(); case 6: - if (lookahead == '2') ADVANCE(268); + if (lookahead == '.') ADVANCE(271); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(6); END_STATE(); case 7: - if (lookahead == '6') ADVANCE(266); + if (lookahead == '/') ADVANCE(179); END_STATE(); case 8: - if (lookahead == '<') ADVANCE(186); + if (lookahead == '1') ADVANCE(10); + if (lookahead == '3') ADVANCE(9); + if (lookahead == '8') ADVANCE(292); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(208); + if (lookahead == '2') ADVANCE(296); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(207); + if (lookahead == '6') ADVANCE(294); END_STATE(); case 11: - if (lookahead == '>') ADVANCE(203); + if (lookahead == '<') ADVANCE(211); END_STATE(); case 12: - if (lookahead == '>') ADVANCE(187); + if (lookahead == '=') ADVANCE(230); END_STATE(); case 13: - if (lookahead == '>') ADVANCE(219); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '=') ADVANCE(229); END_STATE(); case 14: - if (lookahead == '_') ADVANCE(107); - if (lookahead == 's') ADVANCE(262); + if (lookahead == '>') ADVANCE(224); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == '>') ADVANCE(212); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(96); + if (lookahead == '>') ADVANCE(241); + if (lookahead == '|') ADVANCE(227); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(98); + if (lookahead == '_') ADVANCE(111); + if (lookahead == 's') ADVANCE(290); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(72); + if (lookahead == 'a') ADVANCE(130); END_STATE(); case 19: - if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == 'a') ADVANCE(76); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'a') ADVANCE(67); END_STATE(); case 23: - if (lookahead == 'b') ADVANCE(237); + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 24: - if (lookahead == 'c') ADVANCE(82); + if (lookahead == 'a') ADVANCE(124); END_STATE(); case 25: - if (lookahead == 'c') ADVANCE(101); + if (lookahead == 'a') ADVANCE(116); END_STATE(); case 26: - if (lookahead == 'c') ADVANCE(87); + if (lookahead == 'b') ADVANCE(263); END_STATE(); case 27: - if (lookahead == 'c') ADVANCE(88); + if (lookahead == 'c') ADVANCE(86); END_STATE(); case 28: - if (lookahead == 'd') ADVANCE(276); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(278); + if (lookahead == 'c') ADVANCE(91); END_STATE(); case 30: - if (lookahead == 'd') ADVANCE(42); + if (lookahead == 'c') ADVANCE(92); END_STATE(); case 31: - if (lookahead == 'd') ADVANCE(43); + if (lookahead == 'd') ADVANCE(304); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(44); + if (lookahead == 'd') ADVANCE(306); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'd') ADVANCE(45); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'd') ADVANCE(46); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(28); + if (lookahead == 'd') ADVANCE(47); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'e') ADVANCE(220); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(284); + if (lookahead == 'e') ADVANCE(202); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(31); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'e') ADVANCE(310); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'e') ADVANCE(312); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(265); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(92); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'e') ADVANCE(32); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'e') ADVANCE(108); END_STATE(); case 45: - if (lookahead == 'f') ADVANCE(5); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 46: - if (lookahead == 'f') ADVANCE(160); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 47: - if (lookahead == 'f') ADVANCE(160); - if (lookahead == 'm') ADVANCE(89); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 48: - if (lookahead == 'g') ADVANCE(280); - if (lookahead == 'n') ADVANCE(17); - if (lookahead == 't') ADVANCE(14); + if (lookahead == 'f') ADVANCE(8); END_STATE(); case 49: - if (lookahead == 'g') ADVANCE(164); + if (lookahead == 'f') ADVANCE(181); END_STATE(); case 50: - if (lookahead == 'g') ADVANCE(260); + if (lookahead == 'f') ADVANCE(181); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 51: - if (lookahead == 'g') ADVANCE(74); - if (lookahead == 'z') ADVANCE(33); + if (lookahead == 'g') ADVANCE(308); + if (lookahead == 'n') ADVANCE(20); + if (lookahead == 't') ADVANCE(17); END_STATE(); case 52: - if (lookahead == 'g') ADVANCE(76); + if (lookahead == 'g') ADVANCE(185); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'y') ADVANCE(108); + if (lookahead == 'g') ADVANCE(288); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'g') ADVANCE(78); + if (lookahead == 'z') ADVANCE(36); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(52); + if (lookahead == 'g') ADVANCE(80); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'y') ADVANCE(112); END_STATE(); case 57: - if (lookahead == 'i') ADVANCE(122); + if (lookahead == 'i') ADVANCE(54); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'i') ADVANCE(55); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(110); - if (lookahead == 's') ADVANCE(55); + if (lookahead == 'i') ADVANCE(126); END_STATE(); case 61: - if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(78); + if (lookahead == 'i') ADVANCE(77); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(79); + if (lookahead == 'i') ADVANCE(114); + if (lookahead == 's') ADVANCE(58); END_STATE(); case 64: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'i') ADVANCE(81); END_STATE(); case 65: - if (lookahead == 'l') ADVANCE(83); - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'i') ADVANCE(82); END_STATE(); case 66: - if (lookahead == 'l') ADVANCE(18); + if (lookahead == 'i') ADVANCE(83); END_STATE(); case 67: - if (lookahead == 'l') ADVANCE(36); + if (lookahead == 'l') ADVANCE(225); END_STATE(); case 68: - if (lookahead == 'm') ADVANCE(89); - if (lookahead == 'n') ADVANCE(109); + if (lookahead == 'l') ADVANCE(87); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(201); + if (lookahead == 'l') ADVANCE(21); END_STATE(); case 70: - if (lookahead == 'n') ADVANCE(60); - if (lookahead == 't') ADVANCE(45); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 71: - if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 72: - if (lookahead == 'n') ADVANCE(49); + if (lookahead == 'm') ADVANCE(93); + if (lookahead == 'n') ADVANCE(113); END_STATE(); case 73: - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'n') ADVANCE(63); + if (lookahead == 't') ADVANCE(48); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(19); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 76: - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'n') ADVANCE(52); END_STATE(); case 77: - if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(116); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'n') ADVANCE(22); END_STATE(); case 80: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == 'n') ADVANCE(43); END_STATE(); case 81: - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'n') ADVANCE(119); END_STATE(); case 82: - if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 83: - if (lookahead == 'o') ADVANCE(22); + if (lookahead == 'n') ADVANCE(121); END_STATE(); case 84: - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 85: - if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 86: - if (lookahead == 'o') ADVANCE(63); + if (lookahead == 'o') ADVANCE(33); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(31); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'o') ADVANCE(64); END_STATE(); case 89: - if (lookahead == 'p') ADVANCE(81); + if (lookahead == 'o') ADVANCE(65); END_STATE(); case 90: - if (lookahead == 'p') ADVANCE(16); + if (lookahead == 'o') ADVANCE(66); END_STATE(); case 91: - if (lookahead == 'p') ADVANCE(34); + if (lookahead == 'o') ADVANCE(34); END_STATE(); case 92: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 93: - if (lookahead == 'p') ADVANCE(114); + if (lookahead == 'p') ADVANCE(85); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(85); + if (lookahead == 'p') ADVANCE(19); END_STATE(); case 95: - if (lookahead == 'p') ADVANCE(86); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 96: - if (lookahead == 'q') ADVANCE(124); + if (lookahead == 'p') ADVANCE(88); END_STATE(); case 97: - if (lookahead == 'r') ADVANCE(66); - if (lookahead == 'x') ADVANCE(119); + if (lookahead == 'p') ADVANCE(118); END_STATE(); case 98: - if (lookahead == 'r') ADVANCE(128); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 99: - if (lookahead == 'r') ADVANCE(75); + if (lookahead == 'p') ADVANCE(90); END_STATE(); case 100: - if (lookahead == 'r') ADVANCE(59); + if (lookahead == 'q') ADVANCE(129); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'r') ADVANCE(69); + if (lookahead == 'x') ADVANCE(123); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(113); + if (lookahead == 'r') ADVANCE(133); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(172); + if (lookahead == 'r') ADVANCE(79); END_STATE(); case 104: - if (lookahead == 's') ADVANCE(254); + if (lookahead == 'r') ADVANCE(62); END_STATE(); case 105: - if (lookahead == 's') ADVANCE(25); + if (lookahead == 'r') ADVANCE(61); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(111); + if (lookahead == 'r') ADVANCE(117); END_STATE(); case 107: - if (lookahead == 's') ADVANCE(121); + if (lookahead == 's') ADVANCE(198); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(41); + if (lookahead == 's') ADVANCE(282); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(256); + if (lookahead == 's') ADVANCE(28); END_STATE(); case 110: - if (lookahead == 't') ADVANCE(286); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 's') ADVANCE(125); END_STATE(); case 112: - if (lookahead == 't') ADVANCE(258); + if (lookahead == 't') ADVANCE(44); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 't') ADVANCE(284); END_STATE(); case 114: - if (lookahead == 't') ADVANCE(166); + if (lookahead == 't') ADVANCE(314); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(270); + if (lookahead == 't') ADVANCE(204); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 't') ADVANCE(286); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(274); + if (lookahead == 't') ADVANCE(194); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(67); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(39); + if (lookahead == 't') ADVANCE(298); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(56); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(100); + if (lookahead == 't') ADVANCE(302); END_STATE(); case 122: - if (lookahead == 't') ADVANCE(118); + if (lookahead == 't') ADVANCE(70); END_STATE(); case 123: - if (lookahead == 'u') ADVANCE(23); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(38); + if (lookahead == 't') ADVANCE(59); END_STATE(); case 125: - if (lookahead == 'v') ADVANCE(20); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 126: - if (lookahead == 'v') ADVANCE(37); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 127: - if (lookahead == 'x') ADVANCE(119); + if (lookahead == 'u') ADVANCE(135); + if (lookahead == '"' || + lookahead == '\\' || + lookahead == 'e' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(269); END_STATE(); case 128: - if (lookahead == 'y') ADVANCE(252); + if (lookahead == 'u') ADVANCE(26); END_STATE(); case 129: - if (lookahead == 'y') ADVANCE(91); + if (lookahead == 'u') ADVANCE(41); END_STATE(); case 130: - if (lookahead == '|') ADVANCE(205); + if (lookahead == 'v') ADVANCE(23); END_STATE(); case 131: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(251); + if (lookahead == 'v') ADVANCE(40); END_STATE(); case 132: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(132) - if (lookahead == '\r') SKIP(132) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(2); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(368); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == 'x') ADVANCE(123); END_STATE(); case 133: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(133) - if (lookahead == '\r') SKIP(133) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(367); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == 'y') ADVANCE(280); END_STATE(); case 134: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(134) - if (lookahead == '\r') SKIP(134) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(2); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '>') ADVANCE(12); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(368); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == 'y') ADVANCE(95); END_STATE(); case 135: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(136) - if (lookahead == '\r') SKIP(136) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '"') ADVANCE(242); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(248); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '\\') ADVANCE(148); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(97); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'j') ADVANCE(15); - if (lookahead == 'l') ADVANCE(57); - if (lookahead == 'n') ADVANCE(21); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 's') ADVANCE(54); - if (lookahead == 't') ADVANCE(129); - if (lookahead == 'u') ADVANCE(70); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '{') ADVANCE(168); END_STATE(); case 136: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(136) - if (lookahead == '\r') SKIP(136) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(248); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(97); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'j') ADVANCE(15); - if (lookahead == 'l') ADVANCE(57); - if (lookahead == 'n') ADVANCE(21); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 's') ADVANCE(54); - if (lookahead == 't') ADVANCE(129); - if (lookahead == 'u') ADVANCE(70); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '}') ADVANCE(270); END_STATE(); case 137: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(137) - if (lookahead == '\r') SKIP(137) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '}') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 138: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(138) - if (lookahead == '\r') SKIP(138) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '%') ADVANCE(226); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(190); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '}') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 139: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(139) - if (lookahead == '\r') SKIP(139) - if (lookahead == '!') ADVANCE(9); - if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(127); - if (lookahead == 'f') ADVANCE(69); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 't') ADVANCE(129); - if (lookahead == '|') ADVANCE(130); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '}') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 140: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(140) - if (lookahead == '\r') SKIP(140) - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '-') ADVANCE(193); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'i') ADVANCE(334); - if (lookahead == '|') ADVANCE(230); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '}') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); END_STATE(); case 141: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(141) - if (lookahead == '\r') SKIP(141) - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '>') ADVANCE(12); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '}') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); END_STATE(); case 142: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(142) + lookahead == ' ') SKIP(142) if (lookahead == '\r') SKIP(142) - if (lookahead == '!') ADVANCE(9); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '<') ADVANCE(210); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(214); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'i') ADVANCE(46); - if (lookahead == '|') ADVANCE(232); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(5); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 143: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(143) + lookahead == ' ') SKIP(143) if (lookahead == '\r') SKIP(143) - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '_') ADVANCE(289); - if (lookahead == 'f') ADVANCE(355); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 144: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(144) + lookahead == ' ') SKIP(144) if (lookahead == '\r') SKIP(144) - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(11); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(12); - if (lookahead == ']') ADVANCE(185); - if (lookahead == 'a') ADVANCE(103); - if (lookahead == 'c') ADVANCE(80); - if (lookahead == 'e') ADVANCE(127); - if (lookahead == 'f') ADVANCE(69); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'o') ADVANCE(90); - if (lookahead == 'p') ADVANCE(123); - if (lookahead == 't') ADVANCE(129); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(230); - if (lookahead == '}') ADVANCE(163); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(439); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 145: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(145) + lookahead == ' ') SKIP(145) if (lookahead == '\r') SKIP(145) - if (lookahead == '#') ADVANCE(181); - if (lookahead == ')') ADVANCE(183); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '/') ADVANCE(4); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(289); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(5); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 146: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(146) + lookahead == ' ') SKIP(146) if (lookahead == '\r') SKIP(146) - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '-') ADVANCE(189); - if (lookahead == '/') ADVANCE(4); - if (lookahead == '0') ADVANCE(248); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(249); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(216); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 147: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(147) + lookahead == ' ') SKIP(147) if (lookahead == '\r') SKIP(147) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(298); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 't') ADVANCE(367); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(439); + if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'p') ADVANCE(328); + if (lookahead == 't') ADVANCE(405); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 148: - if (lookahead == '"' || - lookahead == '\\' || - lookahead == 'e' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(243); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(149) + if (lookahead == '\r') SKIP(149) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '"') ADVANCE(268); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(276); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '\\') ADVANCE(127); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'b') ADVANCE(56); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'j') ADVANCE(18); + if (lookahead == 'l') ADVANCE(60); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 's') ADVANCE(57); + if (lookahead == 't') ADVANCE(134); + if (lookahead == 'u') ADVANCE(74); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(250); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(149) + if (lookahead == '\r') SKIP(149) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(276); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'b') ADVANCE(56); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'j') ADVANCE(18); + if (lookahead == 'l') ADVANCE(60); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 's') ADVANCE(57); + if (lookahead == 't') ADVANCE(134); + if (lookahead == 'u') ADVANCE(74); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 150: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(150) + if (lookahead == '\r') SKIP(150) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(214); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 't') ADVANCE(134); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); END_STATE(); case 151: - if (eof) ADVANCE(154); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(151) + lookahead == ' ') SKIP(151) if (lookahead == '\r') SKIP(151) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == ')') ADVANCE(183); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == ',') ADVANCE(176); - if (lookahead == '-') ADVANCE(191); - if (lookahead == '.') ADVANCE(171); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(180); - if (lookahead == '>') ADVANCE(215); - if (lookahead == '[') ADVANCE(184); - if (lookahead == ']') ADVANCE(185); - if (lookahead == '_') ADVANCE(288); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'b') ADVANCE(341); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(386); - if (lookahead == 'f') ADVANCE(351); - if (lookahead == 'i') ADVANCE(332); - if (lookahead == 'j') ADVANCE(295); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'n') ADVANCE(303); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 's') ADVANCE(342); - if (lookahead == 't') ADVANCE(366); - if (lookahead == 'u') ADVANCE(356); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(231); - if (lookahead == '}') ADVANCE(163); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(316); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); case 152: - if (eof) ADVANCE(154); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(152) + lookahead == ' ') SKIP(152) if (lookahead == '\r') SKIP(152) - if (lookahead == '!') ADVANCE(236); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '%') ADVANCE(226); + if (lookahead == '!') ADVANCE(12); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); if (lookahead == '&') ADVANCE(1); - if (lookahead == '(') ADVANCE(182); - if (lookahead == '*') ADVANCE(223); - if (lookahead == '+') ADVANCE(220); - if (lookahead == '-') ADVANCE(192); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(174); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(209); - if (lookahead == '=') ADVANCE(10); - if (lookahead == '>') ADVANCE(214); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(422); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'i') ADVANCE(333); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 't') ADVANCE(366); - if (lookahead == '{') ADVANCE(162); - if (lookahead == '|') ADVANCE(13); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'a') ADVANCE(433); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); END_STATE(); case 153: - if (eof) ADVANCE(154); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ' || - lookahead == ';') SKIP(153) + lookahead == ' ') SKIP(153) if (lookahead == '\r') SKIP(153) - if (lookahead == '!') ADVANCE(235); - if (lookahead == '"') ADVANCE(241); - if (lookahead == '#') ADVANCE(181); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '.') ADVANCE(170); - if (lookahead == '/') ADVANCE(175); - if (lookahead == '0') ADVANCE(246); - if (lookahead == '<') ADVANCE(8); - if (lookahead == '[') ADVANCE(184); - if (lookahead == '_') ADVANCE(290); - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'c') ADVANCE(297); - if (lookahead == 'e') ADVANCE(422); - if (lookahead == 'f') ADVANCE(355); - if (lookahead == 'i') ADVANCE(333); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'p') ADVANCE(418); - if (lookahead == 't') ADVANCE(366); - if (lookahead == '{') ADVANCE(162); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(247); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(426); + if (lookahead == '!') ADVANCE(261); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(318); + if (lookahead == '{') ADVANCE(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); case 154: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(154) + if (lookahead == '\r') SKIP(154) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'i') ADVANCE(49); + if (lookahead == '|') ADVANCE(256); END_STATE(); case 155: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(155) + if (lookahead == '\r') SKIP(155) + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '-') ADVANCE(218); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == '|') ADVANCE(255); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 156: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(156) + if (lookahead == '\r') SKIP(156) + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 157: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(157) + if (lookahead == '\r') SKIP(157) + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'a') ADVANCE(439); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 158: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(158) + if (lookahead == '\r') SKIP(158) + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(4); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '@') ADVANCE(189); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 't') ADVANCE(134); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '}') ADVANCE(184); + END_STATE(); + case 159: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(159) + if (lookahead == '\r') SKIP(159) + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(14); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(4); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '>') ADVANCE(15); + if (lookahead == '@') ADVANCE(189); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 't') ADVANCE(134); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(184); + END_STATE(); + case 160: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(160) + if (lookahead == '\r') SKIP(160) + if (lookahead == '#') ADVANCE(208); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '_') ADVANCE(317); + if (lookahead == 'f') ADVANCE(392); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 161: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(161) + if (lookahead == '\r') SKIP(161) + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '/') ADVANCE(7); + if (lookahead == ':') ADVANCE(193); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(317); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 162: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(162) + if (lookahead == '\r') SKIP(162) + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '-') ADVANCE(213); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 163: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(163) + if (lookahead == '\r') SKIP(163) + if (lookahead == '/') ADVANCE(7); + if (lookahead == 't') ADVANCE(461); + if (lookahead == '}') ADVANCE(184); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 164: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(164) + if (lookahead == '\r') SKIP(164) + if (lookahead == '!') ADVANCE(12); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(215); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == ']') ADVANCE(210); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'c') ADVANCE(84); + if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'i') ADVANCE(50); + if (lookahead == 'o') ADVANCE(94); + if (lookahead == 'p') ADVANCE(128); + if (lookahead == 't') ADVANCE(134); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (lookahead == '}') ADVANCE(184); + END_STATE(); + case 165: + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(279); + END_STATE(); + case 166: + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(278); + END_STATE(); + case 167: + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(272); + END_STATE(); + case 168: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + END_STATE(); + case 169: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + END_STATE(); + case 170: + if (eof) ADVANCE(175); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(170) + if (lookahead == '\r') SKIP(170) + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(216); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(237); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == ']') ADVANCE(210); + if (lookahead == '_') ADVANCE(316); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'b') ADVANCE(377); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(336); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'j') ADVANCE(323); + if (lookahead == 'l') ADVANCE(359); + if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 's') ADVANCE(378); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(393); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(256); + if (lookahead == '}') ADVANCE(184); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('d' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 171: + if (eof) ADVANCE(175); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(171) + if (lookahead == '\r') SKIP(171) + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(439); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 172: + if (eof) ADVANCE(175); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(172) + if (lookahead == '\r') SKIP(172) + if (lookahead == '!') ADVANCE(261); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '(') ADVANCE(190); + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(191); + if (lookahead == '-') ADVANCE(219); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == ':') ADVANCE(193); + if (lookahead == '<') ADVANCE(3); + if (lookahead == '=') ADVANCE(206); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(439); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 173: + if (eof) ADVANCE(175); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(173) + if (lookahead == '\r') SKIP(173) + if (lookahead == '!') ADVANCE(261); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '-') ADVANCE(218); + if (lookahead == '/') ADVANCE(7); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(11); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(439); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 174: + if (eof) ADVANCE(175); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') SKIP(174) + if (lookahead == '\r') SKIP(174) + if (lookahead == '!') ADVANCE(262); + if (lookahead == '"') ADVANCE(267); + if (lookahead == '#') ADVANCE(208); + if (lookahead == '%') ADVANCE(248); + if (lookahead == '&') ADVANCE(1); + if (lookahead == '(') ADVANCE(190); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '+') ADVANCE(242); + if (lookahead == '-') ADVANCE(217); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '0') ADVANCE(274); + if (lookahead == '<') ADVANCE(231); + if (lookahead == '=') ADVANCE(13); + if (lookahead == '>') ADVANCE(236); + if (lookahead == '@') ADVANCE(189); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '_') ADVANCE(318); + if (lookahead == 'a') ADVANCE(430); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'f') ADVANCE(392); + if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'p') ADVANCE(327); + if (lookahead == 't') ADVANCE(404); + if (lookahead == 'u') ADVANCE(431); + if (lookahead == '{') ADVANCE(183); + if (lookahead == '|') ADVANCE(16); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(275); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(463); + END_STATE(); + case 175: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 176: ACCEPT_TOKEN(sym_module_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(155); + lookahead != '\n') ADVANCE(176); END_STATE(); - case 156: + case 177: ACCEPT_TOKEN(sym_statement_comment); - if (lookahead == '/') ADVANCE(155); + if (lookahead == '/') ADVANCE(176); if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 157: + case 178: ACCEPT_TOKEN(sym_statement_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + lookahead != '\n') ADVANCE(178); END_STATE(); - case 158: + case 179: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(156); + if (lookahead == '/') ADVANCE(177); if (lookahead != 0 && - lookahead != '\n') ADVANCE(159); + lookahead != '\n') ADVANCE(180); END_STATE(); - case 159: + case 180: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(159); + lookahead != '\n') ADVANCE(180); END_STATE(); - case 160: + case 181: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 161: + case 182: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 162: + case 183: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 163: + case 184: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 164: + case 185: ACCEPT_TOKEN(anon_sym_erlang); END_STATE(); - case 165: + case 186: ACCEPT_TOKEN(anon_sym_erlang); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 166: + case 187: ACCEPT_TOKEN(anon_sym_javascript); END_STATE(); - case 167: + case 188: ACCEPT_TOKEN(anon_sym_javascript); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 168: + case 189: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 194: ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 169: + case 195: ACCEPT_TOKEN(anon_sym_import); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 170: + case 196: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 171: + case 197: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(228); + if (lookahead == '.') ADVANCE(253); END_STATE(); - case 172: + case 198: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 173: + case 199: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 's') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '.') ADVANCE(225); - if (lookahead == '/') ADVANCE(158); + case 200: + ACCEPT_TOKEN(anon_sym_as); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 175: + case 201: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '.') ADVANCE(247); + if (lookahead == '/') ADVANCE(179); END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_COMMA); + case 202: + ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 177: + case 203: + ACCEPT_TOKEN(anon_sym_type); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 204: ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 178: + case 205: ACCEPT_TOKEN(anon_sym_const); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 179: + case 206: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 180: + case 207: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(229); END_STATE(); - case 181: + case 208: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 184: + case 209: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 185: + case 210: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 186: + case 211: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 187: + case 212: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_COLON); + case 213: + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 189: + case 214: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(244); END_STATE(); - case 190: + case 215: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); + if (lookahead == '.') ADVANCE(244); + if (lookahead == '>') ADVANCE(224); END_STATE(); - case 191: + case 216: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '.') ADVANCE(244); + if (lookahead == '>') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + lookahead == '_') ADVANCE(6); END_STATE(); - case 192: + case 217: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(222); + if (lookahead == '.') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + lookahead == '_') ADVANCE(6); END_STATE(); - case 193: + case 218: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '>') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + lookahead == '_') ADVANCE(6); END_STATE(); - case 194: + case 219: ACCEPT_TOKEN(anon_sym_DASH); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(3); + lookahead == '_') ADVANCE(6); END_STATE(); - case 195: + case 220: ACCEPT_TOKEN(anon_sym_size); END_STATE(); - case 196: + case 221: ACCEPT_TOKEN(anon_sym_size); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_external); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_type); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); - END_STATE(); - case 201: + case 222: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 202: + case 223: ACCEPT_TOKEN(anon_sym_fn); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 203: + case 224: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_try); + case 225: + ACCEPT_TOKEN(anon_sym_external); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_external); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 205: + case 227: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 206: + case 228: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 207: + case 229: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 208: + case 230: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 209: + case 231: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '<') ADVANCE(186); - if (lookahead == '=') ADVANCE(211); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '<') ADVANCE(211); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(249); END_STATE(); - case 210: + case 232: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '.') ADVANCE(212); - if (lookahead == '=') ADVANCE(211); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(249); END_STATE(); - case 211: + case 233: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '.') ADVANCE(213); + if (lookahead == '.') ADVANCE(235); END_STATE(); - case 212: + case 234: ACCEPT_TOKEN(anon_sym_LT_DOT); END_STATE(); - case 213: + case 235: ACCEPT_TOKEN(anon_sym_LT_EQ_DOT); END_STATE(); - case 214: + case 236: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '=') ADVANCE(238); END_STATE(); - case 215: + case 237: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '.') ADVANCE(217); - if (lookahead == '=') ADVANCE(216); - if (lookahead == '>') ADVANCE(187); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '=') ADVANCE(238); + if (lookahead == '>') ADVANCE(212); END_STATE(); - case 216: + case 238: ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == '.') ADVANCE(218); + if (lookahead == '.') ADVANCE(240); END_STATE(); - case 217: + case 239: ACCEPT_TOKEN(anon_sym_GT_DOT); END_STATE(); - case 218: + case 240: ACCEPT_TOKEN(anon_sym_GT_EQ_DOT); END_STATE(); - case 219: + case 241: ACCEPT_TOKEN(anon_sym_PIPE_GT); END_STATE(); - case 220: + case 242: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(221); + if (lookahead == '.') ADVANCE(243); END_STATE(); - case 221: + case 243: ACCEPT_TOKEN(anon_sym_PLUS_DOT); END_STATE(); - case 222: + case 244: ACCEPT_TOKEN(anon_sym_DASH_DOT); END_STATE(); - case 223: + case 245: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '.') ADVANCE(224); + if (lookahead == '.') ADVANCE(246); END_STATE(); - case 224: + case 246: ACCEPT_TOKEN(anon_sym_STAR_DOT); END_STATE(); - case 225: + case 247: ACCEPT_TOKEN(anon_sym_SLASH_DOT); END_STATE(); - case 226: + case 248: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 227: + case 249: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 250: ACCEPT_TOKEN(anon_sym_todo); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 228: + case 251: + ACCEPT_TOKEN(anon_sym_panic); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_echo); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 253: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 229: + case 254: ACCEPT_TOKEN(anon_sym_case); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 231: + case 255: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(219); - if (lookahead == '|') ADVANCE(205); END_STATE(); - case 232: + case 256: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(205); + if (lookahead == '>') ADVANCE(241); + if (lookahead == '|') ADVANCE(227); END_STATE(); - case 233: + case 257: ACCEPT_TOKEN(anon_sym_let); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 234: + case 258: ACCEPT_TOKEN(anon_sym_assert); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 235: + case 259: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 261: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 236: + case 262: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(230); END_STATE(); - case 237: + case 263: ACCEPT_TOKEN(sym_visibility_modifier); END_STATE(); - case 238: + case 264: ACCEPT_TOKEN(sym_visibility_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 239: + case 265: ACCEPT_TOKEN(sym_opacity_modifier); END_STATE(); - case 240: + case 266: ACCEPT_TOKEN(sym_opacity_modifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 241: + case 267: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 242: + case 268: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 243: - ACCEPT_TOKEN(sym_escape_sequence); + case 269: + ACCEPT_TOKEN(aux_sym_escape_sequence_token1); END_STATE(); - case 244: + case 270: + ACCEPT_TOKEN(aux_sym_escape_sequence_token2); + END_STATE(); + case 271: ACCEPT_TOKEN(sym_float); + if (lookahead == 'e') ADVANCE(2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(244); + lookahead == '_') ADVANCE(271); END_STATE(); - case 245: + case 272: + ACCEPT_TOKEN(sym_float); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(272); + END_STATE(); + case 273: ACCEPT_TOKEN(sym__hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); END_STATE(); - case 246: + case 274: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(271); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(131); + lookahead == 'b') ADVANCE(165); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(149); + lookahead == 'o') ADVANCE(166); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(150); + lookahead == 'x') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); + lookahead == '_') ADVANCE(275); END_STATE(); - case 247: + case 275: ACCEPT_TOKEN(sym__decimal); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); + lookahead == '_') ADVANCE(275); END_STATE(); - case 248: + case 276: ACCEPT_TOKEN(sym__decimal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(131); + lookahead == 'b') ADVANCE(165); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(149); + lookahead == 'o') ADVANCE(166); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(150); + lookahead == 'x') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(249); + lookahead == '_') ADVANCE(277); END_STATE(); - case 249: + case 277: ACCEPT_TOKEN(sym__decimal); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(249); + lookahead == '_') ADVANCE(277); END_STATE(); - case 250: + case 278: ACCEPT_TOKEN(sym__octal); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(250); + lookahead == '_') ADVANCE(278); END_STATE(); - case 251: + case 279: ACCEPT_TOKEN(sym__binary); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(251); + lookahead == '_') ADVANCE(279); END_STATE(); - case 252: + case 280: ACCEPT_TOKEN(anon_sym_binary); END_STATE(); - case 253: + case 281: ACCEPT_TOKEN(anon_sym_binary); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 254: + case 282: ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); - case 255: + case 283: ACCEPT_TOKEN(anon_sym_bytes); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 256: + case 284: ACCEPT_TOKEN(anon_sym_int); END_STATE(); - case 257: + case 285: ACCEPT_TOKEN(anon_sym_int); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 258: + case 286: ACCEPT_TOKEN(anon_sym_float); END_STATE(); - case 259: + case 287: ACCEPT_TOKEN(anon_sym_float); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 260: + case 288: ACCEPT_TOKEN(anon_sym_bit_string); END_STATE(); - case 261: + case 289: ACCEPT_TOKEN(anon_sym_bit_string); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 262: + case 290: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 263: + case 291: ACCEPT_TOKEN(anon_sym_bits); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 264: + case 292: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(306); - if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + if (lookahead == '_') ADVANCE(27); END_STATE(); - case 265: + case 293: ACCEPT_TOKEN(anon_sym_utf8); - if (lookahead == '_') ADVANCE(24); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 266: + case 294: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(26); + if (lookahead == '_') ADVANCE(29); END_STATE(); - case 267: + case 295: ACCEPT_TOKEN(anon_sym_utf16); - if (lookahead == '_') ADVANCE(308); + if (lookahead == '_') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 268: + case 296: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(30); END_STATE(); - case 269: + case 297: ACCEPT_TOKEN(anon_sym_utf32); - if (lookahead == '_') ADVANCE(309); + if (lookahead == '_') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 270: + case 298: ACCEPT_TOKEN(anon_sym_utf8_codepoint); END_STATE(); - case 271: + case 299: ACCEPT_TOKEN(anon_sym_utf8_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 272: + case 300: ACCEPT_TOKEN(anon_sym_utf16_codepoint); END_STATE(); - case 273: + case 301: ACCEPT_TOKEN(anon_sym_utf16_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 274: + case 302: ACCEPT_TOKEN(anon_sym_utf32_codepoint); END_STATE(); - case 275: + case 303: ACCEPT_TOKEN(anon_sym_utf32_codepoint); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 276: + case 304: ACCEPT_TOKEN(anon_sym_signed); END_STATE(); - case 277: + case 305: ACCEPT_TOKEN(anon_sym_signed); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 278: + case 306: ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); - case 279: + case 307: ACCEPT_TOKEN(anon_sym_unsigned); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 280: + case 308: ACCEPT_TOKEN(anon_sym_big); END_STATE(); - case 281: + case 309: ACCEPT_TOKEN(anon_sym_big); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 282: + case 310: ACCEPT_TOKEN(anon_sym_little); END_STATE(); - case 283: + case 311: ACCEPT_TOKEN(anon_sym_little); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 284: + case 312: ACCEPT_TOKEN(anon_sym_native); END_STATE(); - case 285: + case 313: ACCEPT_TOKEN(anon_sym_native); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 286: + case 314: ACCEPT_TOKEN(anon_sym_unit); END_STATE(); - case 287: + case 315: ACCEPT_TOKEN(anon_sym_unit); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 288: + case 316: ACCEPT_TOKEN(sym__discard_name); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(288); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + lookahead == '_') ADVANCE(316); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); END_STATE(); - case 289: + case 317: ACCEPT_TOKEN(sym__discard_name); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(317); END_STATE(); - case 290: + case 318: ACCEPT_TOKEN(sym__name); - if (lookahead == '.') ADVANCE(244); + if (lookahead == '.') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(290); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + lookahead == '_') ADVANCE(318); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 291: + case 319: ACCEPT_TOKEN(sym__name); - if (lookahead == '1') ADVANCE(293); - if (lookahead == '3') ADVANCE(292); - if (lookahead == '8') ADVANCE(264); + if (lookahead == '1') ADVANCE(321); + if (lookahead == '3') ADVANCE(320); + if (lookahead == '8') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 292: + case 320: ACCEPT_TOKEN(sym__name); - if (lookahead == '2') ADVANCE(269); + if (lookahead == '2') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 293: + case 321: ACCEPT_TOKEN(sym__name); - if (lookahead == '6') ADVANCE(267); + if (lookahead == '6') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 294: + case 322: ACCEPT_TOKEN(sym__name); - if (lookahead == '_') ADVANCE(400); - if (lookahead == 's') ADVANCE(263); + if (lookahead == '_') ADVANCE(438); + if (lookahead == 's') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 295: + case 323: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'a') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 296: + case 324: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(385); + if (lookahead == 'a') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 297: + case 325: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(397); - if (lookahead == 'o') ADVANCE(358); + if (lookahead == 'a') ADVANCE(436); + if (lookahead == 'o') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 298: + case 326: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(397); + if (lookahead == 'a') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 299: + case 327: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(387); + if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'u') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 300: + case 328: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(357); + if (lookahead == 'a') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 301: + case 329: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(352); + if (lookahead == 'a') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 302: + case 330: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(396); + if (lookahead == 'a') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 303: + case 331: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(412); + if (lookahead == 'a') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 304: + case 332: ACCEPT_TOKEN(sym__name); - if (lookahead == 'a') ADVANCE(405); + if (lookahead == 'a') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 305: + case 333: ACCEPT_TOKEN(sym__name); - if (lookahead == 'b') ADVANCE(238); + if (lookahead == 'a') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 306: + case 334: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(370); + if (lookahead == 'a') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 307: + case 335: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'b') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 308: + case 336: ACCEPT_TOKEN(sym__name); if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'r') ADVANCE(390); + if (lookahead == 'x') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 309: + case 337: ACCEPT_TOKEN(sym__name); - if (lookahead == 'c') ADVANCE(377); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == 'x') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 310: + case 338: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(277); + if (lookahead == 'c') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 311: + case 339: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(279); + if (lookahead == 'c') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 312: + case 340: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(369); + if (lookahead == 'c') ADVANCE(408); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 313: + case 341: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(329); + if (lookahead == 'c') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 314: + case 342: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(330); + if (lookahead == 'c') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 315: + case 343: ACCEPT_TOKEN(sym__name); - if (lookahead == 'd') ADVANCE(331); + if (lookahead == 'c') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 316: + case 344: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(391); + if (lookahead == 'd') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 317: + case 345: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'd') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 318: + case 346: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'd') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 319: + case 347: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'd') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 320: + case 348: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(283); + if (lookahead == 'd') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 321: + case 349: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(285); + if (lookahead == 'd') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 322: + case 350: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'e') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 323: + case 351: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'e') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 324: + case 352: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(402); - if (lookahead == 'i') ADVANCE(416); + if (lookahead == 'e') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 325: + case 353: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 326: + case 354: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'e') ADVANCE(203); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 355: ACCEPT_TOKEN(sym__name); if (lookahead == 'e') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 327: + case 356: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(389); + if (lookahead == 'e') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 328: + case 357: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'e') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 329: + case 358: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'e') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 330: + case 359: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(383); + if (lookahead == 'e') ADVANCE(441); + if (lookahead == 'i') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 331: + case 360: ACCEPT_TOKEN(sym__name); - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'e') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 332: + case 361: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); - if (lookahead == 'm') ADVANCE(378); - if (lookahead == 'n') ADVANCE(401); + if (lookahead == 'e') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 333: + case 362: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); - if (lookahead == 'm') ADVANCE(378); + if (lookahead == 'e') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 334: + case 363: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(161); + if (lookahead == 'e') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 335: + case 364: ACCEPT_TOKEN(sym__name); - if (lookahead == 'f') ADVANCE(291); + if (lookahead == 'e') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 336: + case 365: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(281); - if (lookahead == 'n') ADVANCE(299); - if (lookahead == 't') ADVANCE(294); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 337: + case 366: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(165); + if (lookahead == 'e') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 338: + case 367: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(261); + if (lookahead == 'f') ADVANCE(182); + if (lookahead == 'm') ADVANCE(417); + if (lookahead == 'n') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 339: + case 368: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(360); - if (lookahead == 'z') ADVANCE(318); + if (lookahead == 'f') ADVANCE(182); + if (lookahead == 'm') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 340: + case 369: ACCEPT_TOKEN(sym__name); - if (lookahead == 'g') ADVANCE(362); + if (lookahead == 'f') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 341: + case 370: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(336); - if (lookahead == 'y') ADVANCE(414); + if (lookahead == 'f') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 342: + case 371: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(339); + if (lookahead == 'g') ADVANCE(309); + if (lookahead == 'n') ADVANCE(329); + if (lookahead == 't') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 343: + case 372: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(340); + if (lookahead == 'g') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 344: + case 373: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'g') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 345: + case 374: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(382); + if (lookahead == 'g') ADVANCE(399); + if (lookahead == 'z') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(462); END_STATE(); - case 346: + case 375: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'g') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 347: + case 376: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(363); + if (lookahead == 'h') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 348: + case 377: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 's') ADVANCE(343); + if (lookahead == 'i') ADVANCE(371); + if (lookahead == 'y') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 349: + case 378: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(364); + if (lookahead == 'i') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 350: + case 379: ACCEPT_TOKEN(sym__name); - if (lookahead == 'i') ADVANCE(365); + if (lookahead == 'i') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 351: + case 380: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(372); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'i') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 352: + case 381: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(198); + if (lookahead == 'i') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 353: + case 382: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(300); + if (lookahead == 'i') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 354: + case 383: ACCEPT_TOKEN(sym__name); - if (lookahead == 'l') ADVANCE(320); + if (lookahead == 'i') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 355: + case 384: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'i') ADVANCE(442); + if (lookahead == 's') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 356: + case 385: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(348); - if (lookahead == 't') ADVANCE(335); + if (lookahead == 'i') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 357: + case 386: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'i') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 358: + case 387: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(399); + if (lookahead == 'i') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 359: + case 388: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(338); + if (lookahead == 'l') ADVANCE(410); + if (lookahead == 'n') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 360: + case 389: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'l') ADVANCE(226); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 361: + case 390: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(301); + if (lookahead == 'l') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 362: + case 391: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(326); + if (lookahead == 'l') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 363: + case 392: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(409); + if (lookahead == 'n') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 364: + case 393: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(410); + if (lookahead == 'n') ADVANCE(384); + if (lookahead == 's') ADVANCE(350); + if (lookahead == 't') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 365: + case 394: ACCEPT_TOKEN(sym__name); - if (lookahead == 'n') ADVANCE(411); + if (lookahead == 'n') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 366: + case 395: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); - if (lookahead == 'r') ADVANCE(423); - if (lookahead == 'y') ADVANCE(381); + if (lookahead == 'n') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 367: + case 396: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); - if (lookahead == 'r') ADVANCE(423); + if (lookahead == 'n') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 368: + case 397: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(312); + if (lookahead == 'n') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 369: + case 398: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(227); + if (lookahead == 'n') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 370: + case 399: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(313); + if (lookahead == 'n') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 371: + case 400: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(392); + if (lookahead == 'n') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 372: + case 401: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'n') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 373: + case 402: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'n') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 403: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'n') ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 404: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'o') ADVANCE(346); + if (lookahead == 'y') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 405: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'o') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 406: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'o') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 407: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'o') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 408: ACCEPT_TOKEN(sym__name); if (lookahead == 'o') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 374: + case 409: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(349); + if (lookahead == 'o') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 375: + case 410: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(350); + if (lookahead == 'o') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 376: + case 411: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(314); + if (lookahead == 'o') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 377: + case 412: ACCEPT_TOKEN(sym__name); - if (lookahead == 'o') ADVANCE(315); + if (lookahead == 'o') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 378: + case 413: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(371); + if (lookahead == 'o') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 379: + case 414: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'o') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 380: + case 415: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(373); + if (lookahead == 'o') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 381: + case 416: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(319); + if (lookahead == 'p') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 382: + case 417: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(408); + if (lookahead == 'p') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 383: + case 418: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(374); + if (lookahead == 'p') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 384: + case 419: ACCEPT_TOKEN(sym__name); - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'p') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 385: + case 420: ACCEPT_TOKEN(sym__name); - if (lookahead == 'q') ADVANCE(419); + if (lookahead == 'p') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 386: + case 421: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(353); - if (lookahead == 'x') ADVANCE(417); + if (lookahead == 'p') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 387: + case 422: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'p') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 388: + case 423: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(346); + if (lookahead == 'q') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 389: + case 424: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'r') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 390: + case 425: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(345); + if (lookahead == 'r') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 391: + case 426: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(406); + if (lookahead == 'r') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 392: + case 427: ACCEPT_TOKEN(sym__name); - if (lookahead == 'r') ADVANCE(407); + if (lookahead == 'r') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 393: + case 428: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(173); + if (lookahead == 'r') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 394: + case 429: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 'r') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 395: + case 430: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(255); + if (lookahead == 's') ADVANCE(199); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 396: + case 431: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(307); + if (lookahead == 's') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 397: + case 432: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(317); + if (lookahead == 's') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 398: + case 433: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(394); + if (lookahead == 's') ADVANCE(200); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 399: + case 434: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(404); + if (lookahead == 's') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 400: + case 435: ACCEPT_TOKEN(sym__name); - if (lookahead == 's') ADVANCE(415); + if (lookahead == 's') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 401: + case 436: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(257); + if (lookahead == 's') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 402: + case 437: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(233); + if (lookahead == 's') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 403: + case 438: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(287); + if (lookahead == 's') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 404: + case 439: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(178); + if (lookahead == 's') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 405: + case 440: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(259); + if (lookahead == 't') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 406: + case 441: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(234); + if (lookahead == 't') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 407: + case 442: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(169); + if (lookahead == 't') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 408: + case 443: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(167); + if (lookahead == 't') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 409: + case 444: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(271); + if (lookahead == 't') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 410: + case 445: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(273); + if (lookahead == 't') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 411: + case 446: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(275); + if (lookahead == 't') ADVANCE(195); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 412: + case 447: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(344); + if (lookahead == 't') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 413: + case 448: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 414: + case 449: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(328); + if (lookahead == 't') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 415: + case 450: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(388); + if (lookahead == 't') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 416: + case 451: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(413); + if (lookahead == 't') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 417: + case 452: ACCEPT_TOKEN(sym__name); - if (lookahead == 't') ADVANCE(327); + if (lookahead == 't') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 418: + case 453: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(305); + if (lookahead == 't') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 419: + case 454: ACCEPT_TOKEN(sym__name); - if (lookahead == 'u') ADVANCE(322); + if (lookahead == 't') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 420: + case 455: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(302); + if (lookahead == 't') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 421: + case 456: ACCEPT_TOKEN(sym__name); - if (lookahead == 'v') ADVANCE(321); + if (lookahead == 't') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 422: + case 457: ACCEPT_TOKEN(sym__name); - if (lookahead == 'x') ADVANCE(417); + if (lookahead == 'u') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 423: + case 458: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(204); + if (lookahead == 'v') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 424: + case 459: ACCEPT_TOKEN(sym__name); - if (lookahead == 'y') ADVANCE(253); + if (lookahead == 'v') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 425: + case 460: ACCEPT_TOKEN(sym__name); + if (lookahead == 'y') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); END_STATE(); - case 426: + case 461: + ACCEPT_TOKEN(sym__name); + if (lookahead == 'y') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 462: + ACCEPT_TOKEN(sym__name); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(462); + END_STATE(); + case 463: ACCEPT_TOKEN(sym__upname); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(426); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(463); END_STATE(); default: return false; @@ -4800,1298 +5441,1897 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 152}, - [2] = {.lex_state = 152}, - [3] = {.lex_state = 152}, - [4] = {.lex_state = 152}, - [5] = {.lex_state = 152}, - [6] = {.lex_state = 152}, - [7] = {.lex_state = 152}, - [8] = {.lex_state = 152}, - [9] = {.lex_state = 152}, - [10] = {.lex_state = 132}, - [11] = {.lex_state = 152}, - [12] = {.lex_state = 152}, - [13] = {.lex_state = 132}, - [14] = {.lex_state = 133}, - [15] = {.lex_state = 132}, - [16] = {.lex_state = 152}, - [17] = {.lex_state = 152}, - [18] = {.lex_state = 152}, - [19] = {.lex_state = 152}, - [20] = {.lex_state = 152}, - [21] = {.lex_state = 152}, - [22] = {.lex_state = 152}, - [23] = {.lex_state = 152}, - [24] = {.lex_state = 152}, - [25] = {.lex_state = 152}, - [26] = {.lex_state = 152}, - [27] = {.lex_state = 132}, - [28] = {.lex_state = 152}, - [29] = {.lex_state = 152}, - [30] = {.lex_state = 132}, - [31] = {.lex_state = 132}, - [32] = {.lex_state = 152}, - [33] = {.lex_state = 152}, - [34] = {.lex_state = 132}, - [35] = {.lex_state = 132}, - [36] = {.lex_state = 132}, - [37] = {.lex_state = 152}, - [38] = {.lex_state = 152}, - [39] = {.lex_state = 152}, - [40] = {.lex_state = 152}, - [41] = {.lex_state = 132}, - [42] = {.lex_state = 132}, - [43] = {.lex_state = 152}, - [44] = {.lex_state = 132}, - [45] = {.lex_state = 152}, - [46] = {.lex_state = 152}, - [47] = {.lex_state = 152}, - [48] = {.lex_state = 132}, - [49] = {.lex_state = 152}, - [50] = {.lex_state = 132}, - [51] = {.lex_state = 132}, - [52] = {.lex_state = 132}, - [53] = {.lex_state = 132}, - [54] = {.lex_state = 152}, - [55] = {.lex_state = 133}, - [56] = {.lex_state = 133}, - [57] = {.lex_state = 152}, - [58] = {.lex_state = 152}, - [59] = {.lex_state = 152}, - [60] = {.lex_state = 152}, - [61] = {.lex_state = 152}, - [62] = {.lex_state = 152}, - [63] = {.lex_state = 133}, - [64] = {.lex_state = 133}, - [65] = {.lex_state = 133}, - [66] = {.lex_state = 133}, - [67] = {.lex_state = 152}, - [68] = {.lex_state = 133}, - [69] = {.lex_state = 152}, - [70] = {.lex_state = 133}, - [71] = {.lex_state = 147}, - [72] = {.lex_state = 152}, - [73] = {.lex_state = 133}, - [74] = {.lex_state = 152}, - [75] = {.lex_state = 152}, - [76] = {.lex_state = 152}, - [77] = {.lex_state = 152}, - [78] = {.lex_state = 133}, - [79] = {.lex_state = 152}, - [80] = {.lex_state = 152}, - [81] = {.lex_state = 152}, - [82] = {.lex_state = 152}, - [83] = {.lex_state = 133}, - [84] = {.lex_state = 133}, - [85] = {.lex_state = 152}, - [86] = {.lex_state = 147}, - [87] = {.lex_state = 133}, - [88] = {.lex_state = 147}, - [89] = {.lex_state = 133}, - [90] = {.lex_state = 152}, - [91] = {.lex_state = 152}, - [92] = {.lex_state = 152}, - [93] = {.lex_state = 133}, - [94] = {.lex_state = 152}, - [95] = {.lex_state = 152}, - [96] = {.lex_state = 133}, - [97] = {.lex_state = 152}, - [98] = {.lex_state = 147}, - [99] = {.lex_state = 152}, - [100] = {.lex_state = 152}, - [101] = {.lex_state = 133}, - [102] = {.lex_state = 152}, - [103] = {.lex_state = 133}, - [104] = {.lex_state = 133}, - [105] = {.lex_state = 133}, - [106] = {.lex_state = 152}, - [107] = {.lex_state = 133}, - [108] = {.lex_state = 133}, - [109] = {.lex_state = 133}, - [110] = {.lex_state = 133}, - [111] = {.lex_state = 133}, - [112] = {.lex_state = 133}, - [113] = {.lex_state = 133}, - [114] = {.lex_state = 133}, - [115] = {.lex_state = 133}, - [116] = {.lex_state = 133}, - [117] = {.lex_state = 133}, - [118] = {.lex_state = 133}, - [119] = {.lex_state = 133}, - [120] = {.lex_state = 133}, - [121] = {.lex_state = 147}, - [122] = {.lex_state = 133}, - [123] = {.lex_state = 133}, - [124] = {.lex_state = 133}, - [125] = {.lex_state = 133}, - [126] = {.lex_state = 133}, - [127] = {.lex_state = 133}, - [128] = {.lex_state = 133}, - [129] = {.lex_state = 134}, - [130] = {.lex_state = 147}, - [131] = {.lex_state = 147}, - [132] = {.lex_state = 134}, - [133] = {.lex_state = 147}, - [134] = {.lex_state = 134}, - [135] = {.lex_state = 134}, - [136] = {.lex_state = 134}, - [137] = {.lex_state = 147}, - [138] = {.lex_state = 134}, - [139] = {.lex_state = 147}, - [140] = {.lex_state = 147}, - [141] = {.lex_state = 147}, - [142] = {.lex_state = 147}, - [143] = {.lex_state = 132}, - [144] = {.lex_state = 134}, - [145] = {.lex_state = 134}, - [146] = {.lex_state = 147}, - [147] = {.lex_state = 147}, - [148] = {.lex_state = 147}, - [149] = {.lex_state = 147}, - [150] = {.lex_state = 147}, - [151] = {.lex_state = 147}, - [152] = {.lex_state = 134}, - [153] = {.lex_state = 134}, - [154] = {.lex_state = 147}, - [155] = {.lex_state = 134}, - [156] = {.lex_state = 134}, - [157] = {.lex_state = 147}, - [158] = {.lex_state = 147}, - [159] = {.lex_state = 134}, - [160] = {.lex_state = 147}, - [161] = {.lex_state = 147}, - [162] = {.lex_state = 147}, - [163] = {.lex_state = 147}, - [164] = {.lex_state = 147}, - [165] = {.lex_state = 147}, - [166] = {.lex_state = 134}, - [167] = {.lex_state = 134}, - [168] = {.lex_state = 134}, - [169] = {.lex_state = 134}, - [170] = {.lex_state = 134}, - [171] = {.lex_state = 134}, - [172] = {.lex_state = 134}, - [173] = {.lex_state = 134}, - [174] = {.lex_state = 134}, - [175] = {.lex_state = 147}, - [176] = {.lex_state = 147}, - [177] = {.lex_state = 147}, - [178] = {.lex_state = 134}, - [179] = {.lex_state = 134}, - [180] = {.lex_state = 134}, - [181] = {.lex_state = 134}, - [182] = {.lex_state = 134}, - [183] = {.lex_state = 134}, - [184] = {.lex_state = 134}, - [185] = {.lex_state = 134}, - [186] = {.lex_state = 134}, - [187] = {.lex_state = 134}, - [188] = {.lex_state = 134}, - [189] = {.lex_state = 134}, - [190] = {.lex_state = 134}, - [191] = {.lex_state = 134}, - [192] = {.lex_state = 134}, - [193] = {.lex_state = 134}, - [194] = {.lex_state = 134}, - [195] = {.lex_state = 134}, - [196] = {.lex_state = 134}, - [197] = {.lex_state = 134}, - [198] = {.lex_state = 134}, - [199] = {.lex_state = 134}, - [200] = {.lex_state = 134}, - [201] = {.lex_state = 134}, - [202] = {.lex_state = 134}, - [203] = {.lex_state = 134}, - [204] = {.lex_state = 134}, - [205] = {.lex_state = 134}, - [206] = {.lex_state = 134}, - [207] = {.lex_state = 134}, - [208] = {.lex_state = 134}, - [209] = {.lex_state = 134}, - [210] = {.lex_state = 134}, - [211] = {.lex_state = 134}, - [212] = {.lex_state = 134}, - [213] = {.lex_state = 134}, - [214] = {.lex_state = 134}, - [215] = {.lex_state = 134}, - [216] = {.lex_state = 134}, - [217] = {.lex_state = 134}, - [218] = {.lex_state = 134}, - [219] = {.lex_state = 134}, - [220] = {.lex_state = 134}, - [221] = {.lex_state = 134}, - [222] = {.lex_state = 134}, - [223] = {.lex_state = 134}, - [224] = {.lex_state = 134}, - [225] = {.lex_state = 134}, - [226] = {.lex_state = 134}, - [227] = {.lex_state = 134}, - [228] = {.lex_state = 134}, - [229] = {.lex_state = 134}, - [230] = {.lex_state = 134}, - [231] = {.lex_state = 134}, - [232] = {.lex_state = 134}, - [233] = {.lex_state = 134}, - [234] = {.lex_state = 134}, - [235] = {.lex_state = 134}, - [236] = {.lex_state = 134}, - [237] = {.lex_state = 134}, - [238] = {.lex_state = 134}, - [239] = {.lex_state = 134}, - [240] = {.lex_state = 134}, - [241] = {.lex_state = 134}, - [242] = {.lex_state = 147}, - [243] = {.lex_state = 147}, - [244] = {.lex_state = 147}, - [245] = {.lex_state = 147}, - [246] = {.lex_state = 147}, - [247] = {.lex_state = 147}, - [248] = {.lex_state = 147}, - [249] = {.lex_state = 134}, - [250] = {.lex_state = 134}, - [251] = {.lex_state = 134}, - [252] = {.lex_state = 134}, - [253] = {.lex_state = 134}, - [254] = {.lex_state = 134}, - [255] = {.lex_state = 147}, - [256] = {.lex_state = 147}, - [257] = {.lex_state = 147}, - [258] = {.lex_state = 134}, - [259] = {.lex_state = 134}, - [260] = {.lex_state = 134}, - [261] = {.lex_state = 147}, - [262] = {.lex_state = 147}, - [263] = {.lex_state = 147}, - [264] = {.lex_state = 134}, - [265] = {.lex_state = 134}, - [266] = {.lex_state = 134}, - [267] = {.lex_state = 147}, - [268] = {.lex_state = 147}, - [269] = {.lex_state = 134}, - [270] = {.lex_state = 134}, - [271] = {.lex_state = 134}, - [272] = {.lex_state = 134}, - [273] = {.lex_state = 134}, - [274] = {.lex_state = 134}, - [275] = {.lex_state = 134}, - [276] = {.lex_state = 134}, - [277] = {.lex_state = 134}, - [278] = {.lex_state = 134}, - [279] = {.lex_state = 134}, - [280] = {.lex_state = 147}, - [281] = {.lex_state = 147}, - [282] = {.lex_state = 147}, - [283] = {.lex_state = 147}, - [284] = {.lex_state = 147}, - [285] = {.lex_state = 147}, - [286] = {.lex_state = 147}, - [287] = {.lex_state = 147}, - [288] = {.lex_state = 147}, - [289] = {.lex_state = 147}, - [290] = {.lex_state = 147}, - [291] = {.lex_state = 147}, - [292] = {.lex_state = 135}, - [293] = {.lex_state = 135}, - [294] = {.lex_state = 135}, - [295] = {.lex_state = 135}, - [296] = {.lex_state = 135}, - [297] = {.lex_state = 135}, - [298] = {.lex_state = 135}, - [299] = {.lex_state = 137}, - [300] = {.lex_state = 137}, - [301] = {.lex_state = 137}, - [302] = {.lex_state = 137}, - [303] = {.lex_state = 137}, - [304] = {.lex_state = 137}, - [305] = {.lex_state = 137}, - [306] = {.lex_state = 137}, - [307] = {.lex_state = 137}, - [308] = {.lex_state = 137}, - [309] = {.lex_state = 137}, - [310] = {.lex_state = 137}, - [311] = {.lex_state = 137}, - [312] = {.lex_state = 137}, - [313] = {.lex_state = 137}, - [314] = {.lex_state = 137}, - [315] = {.lex_state = 137}, - [316] = {.lex_state = 137}, - [317] = {.lex_state = 137}, - [318] = {.lex_state = 137}, - [319] = {.lex_state = 137}, - [320] = {.lex_state = 137}, - [321] = {.lex_state = 137}, - [322] = {.lex_state = 137}, - [323] = {.lex_state = 137}, - [324] = {.lex_state = 137}, - [325] = {.lex_state = 137}, - [326] = {.lex_state = 137}, - [327] = {.lex_state = 137}, - [328] = {.lex_state = 137}, - [329] = {.lex_state = 137}, - [330] = {.lex_state = 137}, - [331] = {.lex_state = 137}, - [332] = {.lex_state = 137}, - [333] = {.lex_state = 137}, - [334] = {.lex_state = 137}, - [335] = {.lex_state = 137}, - [336] = {.lex_state = 137}, - [337] = {.lex_state = 137}, - [338] = {.lex_state = 137}, - [339] = {.lex_state = 137}, - [340] = {.lex_state = 137}, - [341] = {.lex_state = 137}, - [342] = {.lex_state = 137}, - [343] = {.lex_state = 137}, - [344] = {.lex_state = 137}, - [345] = {.lex_state = 137}, - [346] = {.lex_state = 137}, - [347] = {.lex_state = 137}, - [348] = {.lex_state = 137}, - [349] = {.lex_state = 137}, - [350] = {.lex_state = 137}, - [351] = {.lex_state = 137}, - [352] = {.lex_state = 137}, - [353] = {.lex_state = 137}, - [354] = {.lex_state = 137}, - [355] = {.lex_state = 137}, - [356] = {.lex_state = 137}, - [357] = {.lex_state = 153}, - [358] = {.lex_state = 153}, - [359] = {.lex_state = 138}, - [360] = {.lex_state = 153}, - [361] = {.lex_state = 135}, - [362] = {.lex_state = 135}, - [363] = {.lex_state = 138}, - [364] = {.lex_state = 138}, - [365] = {.lex_state = 135}, - [366] = {.lex_state = 153}, - [367] = {.lex_state = 138}, - [368] = {.lex_state = 135}, - [369] = {.lex_state = 138}, - [370] = {.lex_state = 138}, - [371] = {.lex_state = 138}, - [372] = {.lex_state = 138}, - [373] = {.lex_state = 138}, - [374] = {.lex_state = 138}, - [375] = {.lex_state = 138}, - [376] = {.lex_state = 138}, - [377] = {.lex_state = 138}, - [378] = {.lex_state = 135}, - [379] = {.lex_state = 135}, - [380] = {.lex_state = 138}, - [381] = {.lex_state = 135}, - [382] = {.lex_state = 138}, - [383] = {.lex_state = 152}, - [384] = {.lex_state = 138}, - [385] = {.lex_state = 138}, - [386] = {.lex_state = 135}, - [387] = {.lex_state = 138}, - [388] = {.lex_state = 138}, - [389] = {.lex_state = 138}, - [390] = {.lex_state = 138}, - [391] = {.lex_state = 138}, - [392] = {.lex_state = 138}, - [393] = {.lex_state = 138}, - [394] = {.lex_state = 138}, - [395] = {.lex_state = 152}, - [396] = {.lex_state = 152}, - [397] = {.lex_state = 135}, - [398] = {.lex_state = 153}, - [399] = {.lex_state = 137}, - [400] = {.lex_state = 137}, - [401] = {.lex_state = 137}, - [402] = {.lex_state = 138}, - [403] = {.lex_state = 138}, - [404] = {.lex_state = 152}, - [405] = {.lex_state = 138}, - [406] = {.lex_state = 138}, - [407] = {.lex_state = 138}, - [408] = {.lex_state = 138}, - [409] = {.lex_state = 138}, - [410] = {.lex_state = 138}, - [411] = {.lex_state = 138}, - [412] = {.lex_state = 153}, - [413] = {.lex_state = 138}, - [414] = {.lex_state = 137}, - [415] = {.lex_state = 152}, - [416] = {.lex_state = 138}, - [417] = {.lex_state = 153}, - [418] = {.lex_state = 138}, - [419] = {.lex_state = 138}, - [420] = {.lex_state = 138}, - [421] = {.lex_state = 138}, - [422] = {.lex_state = 138}, - [423] = {.lex_state = 135}, - [424] = {.lex_state = 138}, - [425] = {.lex_state = 137}, - [426] = {.lex_state = 138}, - [427] = {.lex_state = 138}, - [428] = {.lex_state = 138}, - [429] = {.lex_state = 138}, - [430] = {.lex_state = 138}, - [431] = {.lex_state = 138}, - [432] = {.lex_state = 138}, - [433] = {.lex_state = 135}, - [434] = {.lex_state = 135}, - [435] = {.lex_state = 153}, - [436] = {.lex_state = 152}, - [437] = {.lex_state = 138}, - [438] = {.lex_state = 137}, - [439] = {.lex_state = 137}, - [440] = {.lex_state = 153}, - [441] = {.lex_state = 137}, - [442] = {.lex_state = 153}, - [443] = {.lex_state = 137}, - [444] = {.lex_state = 152}, - [445] = {.lex_state = 152}, - [446] = {.lex_state = 152}, - [447] = {.lex_state = 152}, - [448] = {.lex_state = 152}, - [449] = {.lex_state = 152}, - [450] = {.lex_state = 152}, - [451] = {.lex_state = 152}, - [452] = {.lex_state = 152}, - [453] = {.lex_state = 139}, - [454] = {.lex_state = 152}, - [455] = {.lex_state = 152}, - [456] = {.lex_state = 152}, - [457] = {.lex_state = 152}, - [458] = {.lex_state = 152}, - [459] = {.lex_state = 152}, - [460] = {.lex_state = 152}, - [461] = {.lex_state = 152}, - [462] = {.lex_state = 152}, - [463] = {.lex_state = 152}, - [464] = {.lex_state = 152}, - [465] = {.lex_state = 152}, - [466] = {.lex_state = 152}, - [467] = {.lex_state = 152}, - [468] = {.lex_state = 152}, - [469] = {.lex_state = 152}, - [470] = {.lex_state = 152}, - [471] = {.lex_state = 152}, - [472] = {.lex_state = 152}, - [473] = {.lex_state = 152}, - [474] = {.lex_state = 152}, - [475] = {.lex_state = 152}, - [476] = {.lex_state = 152}, - [477] = {.lex_state = 152}, - [478] = {.lex_state = 152}, - [479] = {.lex_state = 152}, - [480] = {.lex_state = 152}, - [481] = {.lex_state = 152}, - [482] = {.lex_state = 152}, - [483] = {.lex_state = 152}, - [484] = {.lex_state = 152}, - [485] = {.lex_state = 152}, - [486] = {.lex_state = 152}, - [487] = {.lex_state = 152}, - [488] = {.lex_state = 152}, - [489] = {.lex_state = 152}, - [490] = {.lex_state = 152}, - [491] = {.lex_state = 152}, - [492] = {.lex_state = 152}, - [493] = {.lex_state = 152}, - [494] = {.lex_state = 152}, - [495] = {.lex_state = 152}, - [496] = {.lex_state = 152}, - [497] = {.lex_state = 152}, - [498] = {.lex_state = 152}, - [499] = {.lex_state = 152}, - [500] = {.lex_state = 152}, - [501] = {.lex_state = 152}, - [502] = {.lex_state = 152}, - [503] = {.lex_state = 140}, - [504] = {.lex_state = 141}, - [505] = {.lex_state = 140}, - [506] = {.lex_state = 141}, - [507] = {.lex_state = 140}, - [508] = {.lex_state = 137}, - [509] = {.lex_state = 138}, - [510] = {.lex_state = 137}, - [511] = {.lex_state = 141}, - [512] = {.lex_state = 141}, - [513] = {.lex_state = 141}, - [514] = {.lex_state = 141}, - [515] = {.lex_state = 141}, - [516] = {.lex_state = 140}, - [517] = {.lex_state = 141}, - [518] = {.lex_state = 141}, - [519] = {.lex_state = 137}, - [520] = {.lex_state = 141}, - [521] = {.lex_state = 138}, - [522] = {.lex_state = 139}, - [523] = {.lex_state = 139}, - [524] = {.lex_state = 139}, - [525] = {.lex_state = 139}, - [526] = {.lex_state = 139}, - [527] = {.lex_state = 137}, - [528] = {.lex_state = 137}, - [529] = {.lex_state = 139}, - [530] = {.lex_state = 139}, - [531] = {.lex_state = 139}, - [532] = {.lex_state = 137}, - [533] = {.lex_state = 139}, - [534] = {.lex_state = 139}, - [535] = {.lex_state = 139}, - [536] = {.lex_state = 138}, - [537] = {.lex_state = 139}, - [538] = {.lex_state = 138}, - [539] = {.lex_state = 137}, - [540] = {.lex_state = 139}, - [541] = {.lex_state = 139}, - [542] = {.lex_state = 139}, - [543] = {.lex_state = 138}, - [544] = {.lex_state = 139}, - [545] = {.lex_state = 139}, - [546] = {.lex_state = 141}, - [547] = {.lex_state = 137}, - [548] = {.lex_state = 137}, - [549] = {.lex_state = 137}, - [550] = {.lex_state = 137}, - [551] = {.lex_state = 141}, - [552] = {.lex_state = 141}, - [553] = {.lex_state = 137}, - [554] = {.lex_state = 141}, - [555] = {.lex_state = 137}, - [556] = {.lex_state = 137}, - [557] = {.lex_state = 141}, - [558] = {.lex_state = 141}, - [559] = {.lex_state = 137}, - [560] = {.lex_state = 137}, - [561] = {.lex_state = 137}, - [562] = {.lex_state = 137}, - [563] = {.lex_state = 138}, - [564] = {.lex_state = 138}, - [565] = {.lex_state = 137}, - [566] = {.lex_state = 137}, - [567] = {.lex_state = 137}, - [568] = {.lex_state = 138}, - [569] = {.lex_state = 137}, - [570] = {.lex_state = 138}, - [571] = {.lex_state = 138}, - [572] = {.lex_state = 137}, - [573] = {.lex_state = 141}, - [574] = {.lex_state = 141}, - [575] = {.lex_state = 141}, - [576] = {.lex_state = 138}, - [577] = {.lex_state = 141}, - [578] = {.lex_state = 137}, - [579] = {.lex_state = 138}, - [580] = {.lex_state = 137}, - [581] = {.lex_state = 137}, - [582] = {.lex_state = 137}, - [583] = {.lex_state = 138}, - [584] = {.lex_state = 141}, - [585] = {.lex_state = 141}, - [586] = {.lex_state = 141}, - [587] = {.lex_state = 141}, - [588] = {.lex_state = 138}, - [589] = {.lex_state = 141}, - [590] = {.lex_state = 138}, - [591] = {.lex_state = 138}, - [592] = {.lex_state = 138}, - [593] = {.lex_state = 138}, - [594] = {.lex_state = 141}, - [595] = {.lex_state = 141}, - [596] = {.lex_state = 138}, - [597] = {.lex_state = 138}, - [598] = {.lex_state = 138}, - [599] = {.lex_state = 141}, - [600] = {.lex_state = 138}, - [601] = {.lex_state = 141}, - [602] = {.lex_state = 138}, - [603] = {.lex_state = 141}, - [604] = {.lex_state = 138}, - [605] = {.lex_state = 141}, - [606] = {.lex_state = 141}, - [607] = {.lex_state = 138}, - [608] = {.lex_state = 141}, - [609] = {.lex_state = 141}, - [610] = {.lex_state = 138}, - [611] = {.lex_state = 138}, - [612] = {.lex_state = 141}, - [613] = {.lex_state = 141}, - [614] = {.lex_state = 138}, - [615] = {.lex_state = 138}, - [616] = {.lex_state = 138}, - [617] = {.lex_state = 141}, - [618] = {.lex_state = 141}, - [619] = {.lex_state = 141}, - [620] = {.lex_state = 141}, - [621] = {.lex_state = 141}, - [622] = {.lex_state = 141}, - [623] = {.lex_state = 141}, - [624] = {.lex_state = 141}, - [625] = {.lex_state = 141}, - [626] = {.lex_state = 141}, - [627] = {.lex_state = 133}, - [628] = {.lex_state = 142}, - [629] = {.lex_state = 142}, - [630] = {.lex_state = 142}, - [631] = {.lex_state = 142}, - [632] = {.lex_state = 143}, - [633] = {.lex_state = 135}, - [634] = {.lex_state = 135}, - [635] = {.lex_state = 142}, - [636] = {.lex_state = 142}, - [637] = {.lex_state = 143}, - [638] = {.lex_state = 142}, - [639] = {.lex_state = 135}, - [640] = {.lex_state = 143}, - [641] = {.lex_state = 143}, - [642] = {.lex_state = 143}, - [643] = {.lex_state = 143}, - [644] = {.lex_state = 143}, - [645] = {.lex_state = 143}, - [646] = {.lex_state = 143}, - [647] = {.lex_state = 143}, - [648] = {.lex_state = 143}, - [649] = {.lex_state = 143}, - [650] = {.lex_state = 143}, - [651] = {.lex_state = 143}, - [652] = {.lex_state = 143}, - [653] = {.lex_state = 143}, - [654] = {.lex_state = 143}, - [655] = {.lex_state = 143}, - [656] = {.lex_state = 143}, - [657] = {.lex_state = 143}, - [658] = {.lex_state = 143}, - [659] = {.lex_state = 143}, - [660] = {.lex_state = 143}, - [661] = {.lex_state = 143}, - [662] = {.lex_state = 138}, - [663] = {.lex_state = 143}, - [664] = {.lex_state = 143}, - [665] = {.lex_state = 143}, - [666] = {.lex_state = 143}, - [667] = {.lex_state = 143}, - [668] = {.lex_state = 143}, - [669] = {.lex_state = 143}, - [670] = {.lex_state = 143}, - [671] = {.lex_state = 143}, - [672] = {.lex_state = 144}, - [673] = {.lex_state = 144}, - [674] = {.lex_state = 143}, - [675] = {.lex_state = 143}, - [676] = {.lex_state = 143}, - [677] = {.lex_state = 143}, - [678] = {.lex_state = 143}, - [679] = {.lex_state = 143}, - [680] = {.lex_state = 143}, - [681] = {.lex_state = 139}, - [682] = {.lex_state = 143}, - [683] = {.lex_state = 139}, - [684] = {.lex_state = 139}, - [685] = {.lex_state = 144}, - [686] = {.lex_state = 143}, - [687] = {.lex_state = 143}, - [688] = {.lex_state = 143}, - [689] = {.lex_state = 143}, - [690] = {.lex_state = 139}, - [691] = {.lex_state = 143}, - [692] = {.lex_state = 143}, - [693] = {.lex_state = 143}, - [694] = {.lex_state = 143}, - [695] = {.lex_state = 139}, - [696] = {.lex_state = 139}, - [697] = {.lex_state = 143}, - [698] = {.lex_state = 139}, - [699] = {.lex_state = 138}, - [700] = {.lex_state = 139}, - [701] = {.lex_state = 139}, - [702] = {.lex_state = 144}, - [703] = {.lex_state = 139}, - [704] = {.lex_state = 145}, - [705] = {.lex_state = 145}, - [706] = {.lex_state = 138}, - [707] = {.lex_state = 138}, - [708] = {.lex_state = 138}, - [709] = {.lex_state = 144}, - [710] = {.lex_state = 145}, - [711] = {.lex_state = 144}, - [712] = {.lex_state = 144}, - [713] = {.lex_state = 144}, - [714] = {.lex_state = 145}, - [715] = {.lex_state = 145}, - [716] = {.lex_state = 135}, - [717] = {.lex_state = 144}, - [718] = {.lex_state = 144}, - [719] = {.lex_state = 144}, - [720] = {.lex_state = 144}, - [721] = {.lex_state = 144}, - [722] = {.lex_state = 135}, - [723] = {.lex_state = 144}, - [724] = {.lex_state = 144}, - [725] = {.lex_state = 144}, - [726] = {.lex_state = 135}, - [727] = {.lex_state = 145}, - [728] = {.lex_state = 145}, - [729] = {.lex_state = 144}, - [730] = {.lex_state = 144}, - [731] = {.lex_state = 144}, - [732] = {.lex_state = 145}, - [733] = {.lex_state = 144}, - [734] = {.lex_state = 144}, - [735] = {.lex_state = 144}, - [736] = {.lex_state = 145}, - [737] = {.lex_state = 144}, - [738] = {.lex_state = 144}, - [739] = {.lex_state = 144}, - [740] = {.lex_state = 144}, - [741] = {.lex_state = 144}, - [742] = {.lex_state = 144}, - [743] = {.lex_state = 145}, - [744] = {.lex_state = 144}, - [745] = {.lex_state = 144}, - [746] = {.lex_state = 144}, - [747] = {.lex_state = 144}, - [748] = {.lex_state = 144}, - [749] = {.lex_state = 135}, - [750] = {.lex_state = 144}, - [751] = {.lex_state = 144}, - [752] = {.lex_state = 144}, - [753] = {.lex_state = 145}, - [754] = {.lex_state = 144}, - [755] = {.lex_state = 144}, - [756] = {.lex_state = 145}, - [757] = {.lex_state = 144}, - [758] = {.lex_state = 144}, - [759] = {.lex_state = 144}, - [760] = {.lex_state = 144}, - [761] = {.lex_state = 144}, - [762] = {.lex_state = 144}, - [763] = {.lex_state = 144}, - [764] = {.lex_state = 145}, - [765] = {.lex_state = 144}, - [766] = {.lex_state = 144}, - [767] = {.lex_state = 144}, - [768] = {.lex_state = 144}, - [769] = {.lex_state = 135}, - [770] = {.lex_state = 144}, - [771] = {.lex_state = 146}, - [772] = {.lex_state = 144}, - [773] = {.lex_state = 135}, - [774] = {.lex_state = 135}, - [775] = {.lex_state = 135}, - [776] = {.lex_state = 135}, - [777] = {.lex_state = 135}, - [778] = {.lex_state = 135}, - [779] = {.lex_state = 135}, - [780] = {.lex_state = 135}, - [781] = {.lex_state = 135}, - [782] = {.lex_state = 135}, - [783] = {.lex_state = 135}, - [784] = {.lex_state = 135}, - [785] = {.lex_state = 135}, - [786] = {.lex_state = 145}, - [787] = {.lex_state = 145}, - [788] = {.lex_state = 144}, - [789] = {.lex_state = 135}, - [790] = {.lex_state = 135}, - [791] = {.lex_state = 135}, - [792] = {.lex_state = 135}, - [793] = {.lex_state = 135}, - [794] = {.lex_state = 135}, - [795] = {.lex_state = 135}, - [796] = {.lex_state = 135}, - [797] = {.lex_state = 145}, - [798] = {.lex_state = 135}, - [799] = {.lex_state = 135}, - [800] = {.lex_state = 135}, - [801] = {.lex_state = 135}, - [802] = {.lex_state = 135}, - [803] = {.lex_state = 135}, - [804] = {.lex_state = 135}, - [805] = {.lex_state = 145}, - [806] = {.lex_state = 144}, - [807] = {.lex_state = 146}, - [808] = {.lex_state = 135}, - [809] = {.lex_state = 146}, - [810] = {.lex_state = 146}, - [811] = {.lex_state = 146}, - [812] = {.lex_state = 146}, - [813] = {.lex_state = 135}, - [814] = {.lex_state = 146}, - [815] = {.lex_state = 146}, - [816] = {.lex_state = 135}, - [817] = {.lex_state = 146}, - [818] = {.lex_state = 146}, - [819] = {.lex_state = 146}, - [820] = {.lex_state = 135}, - [821] = {.lex_state = 135}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 146}, - [824] = {.lex_state = 146}, - [825] = {.lex_state = 146}, - [826] = {.lex_state = 144}, - [827] = {.lex_state = 146}, - [828] = {.lex_state = 146}, - [829] = {.lex_state = 146}, - [830] = {.lex_state = 135}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 144}, - [834] = {.lex_state = 145}, - [835] = {.lex_state = 132}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 135}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 145}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 144}, - [846] = {.lex_state = 146}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 144}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 144}, - [853] = {.lex_state = 135}, - [854] = {.lex_state = 135}, - [855] = {.lex_state = 135, .external_lex_state = 1}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 135, .external_lex_state = 1}, - [858] = {.lex_state = 135, .external_lex_state = 1}, - [859] = {.lex_state = 135}, - [860] = {.lex_state = 135}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 135}, - [863] = {.lex_state = 135, .external_lex_state = 1}, - [864] = {.lex_state = 135}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 135, .external_lex_state = 1}, - [869] = {.lex_state = 135}, - [870] = {.lex_state = 135}, - [871] = {.lex_state = 146}, - [872] = {.lex_state = 146}, - [873] = {.lex_state = 144}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 146}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 135, .external_lex_state = 1}, - [880] = {.lex_state = 135}, - [881] = {.lex_state = 135, .external_lex_state = 1}, - [882] = {.lex_state = 135, .external_lex_state = 1}, - [883] = {.lex_state = 135}, - [884] = {.lex_state = 135, .external_lex_state = 1}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 0}, - [889] = {.lex_state = 145}, - [890] = {.lex_state = 135, .external_lex_state = 1}, - [891] = {.lex_state = 135}, - [892] = {.lex_state = 146}, - [893] = {.lex_state = 144}, - [894] = {.lex_state = 144}, - [895] = {.lex_state = 146}, - [896] = {.lex_state = 135}, - [897] = {.lex_state = 0}, - [898] = {.lex_state = 135}, - [899] = {.lex_state = 135, .external_lex_state = 1}, - [900] = {.lex_state = 135}, - [901] = {.lex_state = 146}, - [902] = {.lex_state = 146}, - [903] = {.lex_state = 135}, - [904] = {.lex_state = 135}, - [905] = {.lex_state = 0}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 132}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 135}, - [910] = {.lex_state = 135}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 146}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 139}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 132}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 135}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 135}, - [933] = {.lex_state = 152}, - [934] = {.lex_state = 135}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 132}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 132}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 135}, - [946] = {.lex_state = 135}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 132}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 132}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 132}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 132}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 132}, - [969] = {.lex_state = 132}, - [970] = {.lex_state = 132}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 135}, - [978] = {.lex_state = 132}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 146}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 132}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 132}, - [991] = {.lex_state = 135}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 132}, - [995] = {.lex_state = 152}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 146}, - [1001] = {.lex_state = 132}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 132}, - [1009] = {.lex_state = 152}, - [1010] = {.lex_state = 132}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 146}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 135}, - [1019] = {.lex_state = 146}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 146}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 132}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 152}, - [1034] = {.lex_state = 132}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 144}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 146}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 146}, - [1053] = {.lex_state = 146}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 132}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 146}, - [1059] = {.lex_state = 146}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 146}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 132}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 135}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 146}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 146}, - [1088] = {.lex_state = 135}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 132}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 146}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 152}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 152}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 152}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 146}, - [1111] = {.lex_state = 146}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 132}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 146}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 146}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 152}, - [1134] = {.lex_state = 146}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 146}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 146}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 146}, - [1141] = {.lex_state = 135}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 146}, - [1144] = {.lex_state = 146}, - [1145] = {.lex_state = 152}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 146}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 152}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 146}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 135}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 132}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 146}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 146}, - [1164] = {.lex_state = 146}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 146}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 132}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 146}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 132}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 132}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 132}, - [1201] = {.lex_state = 132}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 132}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 135}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 132}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 146}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 132}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 132}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 132}, - [1242] = {.lex_state = 135}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 135}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 135}, - [1253] = {.lex_state = 132}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 146}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 132}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 132}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 132}, - [1278] = {.lex_state = 0}, + [1] = {.lex_state = 171}, + [2] = {.lex_state = 174}, + [3] = {.lex_state = 171}, + [4] = {.lex_state = 171}, + [5] = {.lex_state = 142}, + [6] = {.lex_state = 171}, + [7] = {.lex_state = 143}, + [8] = {.lex_state = 144}, + [9] = {.lex_state = 145}, + [10] = {.lex_state = 146}, + [11] = {.lex_state = 142}, + [12] = {.lex_state = 171}, + [13] = {.lex_state = 171}, + [14] = {.lex_state = 174}, + [15] = {.lex_state = 174}, + [16] = {.lex_state = 174}, + [17] = {.lex_state = 174}, + [18] = {.lex_state = 174}, + [19] = {.lex_state = 174}, + [20] = {.lex_state = 174}, + [21] = {.lex_state = 174}, + [22] = {.lex_state = 174}, + [23] = {.lex_state = 144}, + [24] = {.lex_state = 174}, + [25] = {.lex_state = 144}, + [26] = {.lex_state = 174}, + [27] = {.lex_state = 174}, + [28] = {.lex_state = 144}, + [29] = {.lex_state = 174}, + [30] = {.lex_state = 144}, + [31] = {.lex_state = 144}, + [32] = {.lex_state = 174}, + [33] = {.lex_state = 144}, + [34] = {.lex_state = 144}, + [35] = {.lex_state = 144}, + [36] = {.lex_state = 144}, + [37] = {.lex_state = 174}, + [38] = {.lex_state = 144}, + [39] = {.lex_state = 171}, + [40] = {.lex_state = 144}, + [41] = {.lex_state = 174}, + [42] = {.lex_state = 174}, + [43] = {.lex_state = 174}, + [44] = {.lex_state = 144}, + [45] = {.lex_state = 144}, + [46] = {.lex_state = 144}, + [47] = {.lex_state = 174}, + [48] = {.lex_state = 174}, + [49] = {.lex_state = 144}, + [50] = {.lex_state = 174}, + [51] = {.lex_state = 171}, + [52] = {.lex_state = 171}, + [53] = {.lex_state = 171}, + [54] = {.lex_state = 171}, + [55] = {.lex_state = 174}, + [56] = {.lex_state = 174}, + [57] = {.lex_state = 171}, + [58] = {.lex_state = 174}, + [59] = {.lex_state = 174}, + [60] = {.lex_state = 174}, + [61] = {.lex_state = 171}, + [62] = {.lex_state = 174}, + [63] = {.lex_state = 174}, + [64] = {.lex_state = 174}, + [65] = {.lex_state = 174}, + [66] = {.lex_state = 174}, + [67] = {.lex_state = 174}, + [68] = {.lex_state = 171}, + [69] = {.lex_state = 174}, + [70] = {.lex_state = 171}, + [71] = {.lex_state = 171}, + [72] = {.lex_state = 171}, + [73] = {.lex_state = 171}, + [74] = {.lex_state = 171}, + [75] = {.lex_state = 171}, + [76] = {.lex_state = 174}, + [77] = {.lex_state = 171}, + [78] = {.lex_state = 174}, + [79] = {.lex_state = 171}, + [80] = {.lex_state = 171}, + [81] = {.lex_state = 171}, + [82] = {.lex_state = 171}, + [83] = {.lex_state = 171}, + [84] = {.lex_state = 174}, + [85] = {.lex_state = 174}, + [86] = {.lex_state = 174}, + [87] = {.lex_state = 174}, + [88] = {.lex_state = 171}, + [89] = {.lex_state = 174}, + [90] = {.lex_state = 174}, + [91] = {.lex_state = 171}, + [92] = {.lex_state = 171}, + [93] = {.lex_state = 171}, + [94] = {.lex_state = 174}, + [95] = {.lex_state = 174}, + [96] = {.lex_state = 171}, + [97] = {.lex_state = 174}, + [98] = {.lex_state = 171}, + [99] = {.lex_state = 174}, + [100] = {.lex_state = 174}, + [101] = {.lex_state = 174}, + [102] = {.lex_state = 174}, + [103] = {.lex_state = 174}, + [104] = {.lex_state = 174}, + [105] = {.lex_state = 174}, + [106] = {.lex_state = 174}, + [107] = {.lex_state = 174}, + [108] = {.lex_state = 171}, + [109] = {.lex_state = 174}, + [110] = {.lex_state = 174}, + [111] = {.lex_state = 174}, + [112] = {.lex_state = 147}, + [113] = {.lex_state = 174}, + [114] = {.lex_state = 171}, + [115] = {.lex_state = 174}, + [116] = {.lex_state = 174}, + [117] = {.lex_state = 174}, + [118] = {.lex_state = 174}, + [119] = {.lex_state = 171}, + [120] = {.lex_state = 174}, + [121] = {.lex_state = 171}, + [122] = {.lex_state = 171}, + [123] = {.lex_state = 174}, + [124] = {.lex_state = 174}, + [125] = {.lex_state = 174}, + [126] = {.lex_state = 174}, + [127] = {.lex_state = 174}, + [128] = {.lex_state = 171}, + [129] = {.lex_state = 171}, + [130] = {.lex_state = 171}, + [131] = {.lex_state = 171}, + [132] = {.lex_state = 171}, + [133] = {.lex_state = 171}, + [134] = {.lex_state = 171}, + [135] = {.lex_state = 171}, + [136] = {.lex_state = 171}, + [137] = {.lex_state = 171}, + [138] = {.lex_state = 171}, + [139] = {.lex_state = 171}, + [140] = {.lex_state = 171}, + [141] = {.lex_state = 171}, + [142] = {.lex_state = 171}, + [143] = {.lex_state = 171}, + [144] = {.lex_state = 171}, + [145] = {.lex_state = 171}, + [146] = {.lex_state = 171}, + [147] = {.lex_state = 171}, + [148] = {.lex_state = 171}, + [149] = {.lex_state = 171}, + [150] = {.lex_state = 171}, + [151] = {.lex_state = 144}, + [152] = {.lex_state = 171}, + [153] = {.lex_state = 171}, + [154] = {.lex_state = 171}, + [155] = {.lex_state = 171}, + [156] = {.lex_state = 171}, + [157] = {.lex_state = 171}, + [158] = {.lex_state = 171}, + [159] = {.lex_state = 171}, + [160] = {.lex_state = 171}, + [161] = {.lex_state = 171}, + [162] = {.lex_state = 171}, + [163] = {.lex_state = 171}, + [164] = {.lex_state = 171}, + [165] = {.lex_state = 145}, + [166] = {.lex_state = 145}, + [167] = {.lex_state = 145}, + [168] = {.lex_state = 145}, + [169] = {.lex_state = 145}, + [170] = {.lex_state = 144}, + [171] = {.lex_state = 144}, + [172] = {.lex_state = 144}, + [173] = {.lex_state = 145}, + [174] = {.lex_state = 145}, + [175] = {.lex_state = 145}, + [176] = {.lex_state = 145}, + [177] = {.lex_state = 145}, + [178] = {.lex_state = 145}, + [179] = {.lex_state = 145}, + [180] = {.lex_state = 145}, + [181] = {.lex_state = 145}, + [182] = {.lex_state = 145}, + [183] = {.lex_state = 145}, + [184] = {.lex_state = 145}, + [185] = {.lex_state = 145}, + [186] = {.lex_state = 145}, + [187] = {.lex_state = 144}, + [188] = {.lex_state = 145}, + [189] = {.lex_state = 145}, + [190] = {.lex_state = 145}, + [191] = {.lex_state = 145}, + [192] = {.lex_state = 145}, + [193] = {.lex_state = 145}, + [194] = {.lex_state = 145}, + [195] = {.lex_state = 145}, + [196] = {.lex_state = 145}, + [197] = {.lex_state = 144}, + [198] = {.lex_state = 145}, + [199] = {.lex_state = 145}, + [200] = {.lex_state = 144}, + [201] = {.lex_state = 144}, + [202] = {.lex_state = 144}, + [203] = {.lex_state = 144}, + [204] = {.lex_state = 144}, + [205] = {.lex_state = 144}, + [206] = {.lex_state = 144}, + [207] = {.lex_state = 144}, + [208] = {.lex_state = 144}, + [209] = {.lex_state = 144}, + [210] = {.lex_state = 144}, + [211] = {.lex_state = 144}, + [212] = {.lex_state = 144}, + [213] = {.lex_state = 144}, + [214] = {.lex_state = 144}, + [215] = {.lex_state = 144}, + [216] = {.lex_state = 144}, + [217] = {.lex_state = 144}, + [218] = {.lex_state = 144}, + [219] = {.lex_state = 144}, + [220] = {.lex_state = 144}, + [221] = {.lex_state = 144}, + [222] = {.lex_state = 143}, + [223] = {.lex_state = 144}, + [224] = {.lex_state = 144}, + [225] = {.lex_state = 144}, + [226] = {.lex_state = 144}, + [227] = {.lex_state = 143}, + [228] = {.lex_state = 142}, + [229] = {.lex_state = 144}, + [230] = {.lex_state = 142}, + [231] = {.lex_state = 142}, + [232] = {.lex_state = 142}, + [233] = {.lex_state = 144}, + [234] = {.lex_state = 144}, + [235] = {.lex_state = 142}, + [236] = {.lex_state = 144}, + [237] = {.lex_state = 142}, + [238] = {.lex_state = 143}, + [239] = {.lex_state = 144}, + [240] = {.lex_state = 144}, + [241] = {.lex_state = 144}, + [242] = {.lex_state = 144}, + [243] = {.lex_state = 142}, + [244] = {.lex_state = 142}, + [245] = {.lex_state = 144}, + [246] = {.lex_state = 144}, + [247] = {.lex_state = 144}, + [248] = {.lex_state = 143}, + [249] = {.lex_state = 143}, + [250] = {.lex_state = 142}, + [251] = {.lex_state = 144}, + [252] = {.lex_state = 143}, + [253] = {.lex_state = 144}, + [254] = {.lex_state = 142}, + [255] = {.lex_state = 143}, + [256] = {.lex_state = 142}, + [257] = {.lex_state = 142}, + [258] = {.lex_state = 142}, + [259] = {.lex_state = 143}, + [260] = {.lex_state = 143}, + [261] = {.lex_state = 142}, + [262] = {.lex_state = 144}, + [263] = {.lex_state = 143}, + [264] = {.lex_state = 143}, + [265] = {.lex_state = 143}, + [266] = {.lex_state = 142}, + [267] = {.lex_state = 143}, + [268] = {.lex_state = 143}, + [269] = {.lex_state = 143}, + [270] = {.lex_state = 143}, + [271] = {.lex_state = 143}, + [272] = {.lex_state = 143}, + [273] = {.lex_state = 143}, + [274] = {.lex_state = 143}, + [275] = {.lex_state = 144}, + [276] = {.lex_state = 142}, + [277] = {.lex_state = 142}, + [278] = {.lex_state = 143}, + [279] = {.lex_state = 142}, + [280] = {.lex_state = 143}, + [281] = {.lex_state = 142}, + [282] = {.lex_state = 142}, + [283] = {.lex_state = 142}, + [284] = {.lex_state = 143}, + [285] = {.lex_state = 142}, + [286] = {.lex_state = 142}, + [287] = {.lex_state = 142}, + [288] = {.lex_state = 143}, + [289] = {.lex_state = 143}, + [290] = {.lex_state = 142}, + [291] = {.lex_state = 142}, + [292] = {.lex_state = 142}, + [293] = {.lex_state = 143}, + [294] = {.lex_state = 142}, + [295] = {.lex_state = 142}, + [296] = {.lex_state = 142}, + [297] = {.lex_state = 142}, + [298] = {.lex_state = 142}, + [299] = {.lex_state = 142}, + [300] = {.lex_state = 142}, + [301] = {.lex_state = 142}, + [302] = {.lex_state = 142}, + [303] = {.lex_state = 142}, + [304] = {.lex_state = 143}, + [305] = {.lex_state = 143}, + [306] = {.lex_state = 142}, + [307] = {.lex_state = 142}, + [308] = {.lex_state = 142}, + [309] = {.lex_state = 142}, + [310] = {.lex_state = 142}, + [311] = {.lex_state = 143}, + [312] = {.lex_state = 143}, + [313] = {.lex_state = 142}, + [314] = {.lex_state = 142}, + [315] = {.lex_state = 143}, + [316] = {.lex_state = 142}, + [317] = {.lex_state = 142}, + [318] = {.lex_state = 142}, + [319] = {.lex_state = 143}, + [320] = {.lex_state = 142}, + [321] = {.lex_state = 144}, + [322] = {.lex_state = 142}, + [323] = {.lex_state = 143}, + [324] = {.lex_state = 142}, + [325] = {.lex_state = 142}, + [326] = {.lex_state = 142}, + [327] = {.lex_state = 142}, + [328] = {.lex_state = 143}, + [329] = {.lex_state = 143}, + [330] = {.lex_state = 142}, + [331] = {.lex_state = 142}, + [332] = {.lex_state = 142}, + [333] = {.lex_state = 142}, + [334] = {.lex_state = 142}, + [335] = {.lex_state = 142}, + [336] = {.lex_state = 143}, + [337] = {.lex_state = 142}, + [338] = {.lex_state = 142}, + [339] = {.lex_state = 143}, + [340] = {.lex_state = 142}, + [341] = {.lex_state = 142}, + [342] = {.lex_state = 142}, + [343] = {.lex_state = 142}, + [344] = {.lex_state = 142}, + [345] = {.lex_state = 142}, + [346] = {.lex_state = 142}, + [347] = {.lex_state = 142}, + [348] = {.lex_state = 142}, + [349] = {.lex_state = 142}, + [350] = {.lex_state = 142}, + [351] = {.lex_state = 142}, + [352] = {.lex_state = 142}, + [353] = {.lex_state = 142}, + [354] = {.lex_state = 142}, + [355] = {.lex_state = 142}, + [356] = {.lex_state = 142}, + [357] = {.lex_state = 142}, + [358] = {.lex_state = 142}, + [359] = {.lex_state = 142}, + [360] = {.lex_state = 142}, + [361] = {.lex_state = 142}, + [362] = {.lex_state = 142}, + [363] = {.lex_state = 142}, + [364] = {.lex_state = 143}, + [365] = {.lex_state = 142}, + [366] = {.lex_state = 142}, + [367] = {.lex_state = 142}, + [368] = {.lex_state = 142}, + [369] = {.lex_state = 142}, + [370] = {.lex_state = 142}, + [371] = {.lex_state = 142}, + [372] = {.lex_state = 142}, + [373] = {.lex_state = 142}, + [374] = {.lex_state = 142}, + [375] = {.lex_state = 142}, + [376] = {.lex_state = 142}, + [377] = {.lex_state = 142}, + [378] = {.lex_state = 142}, + [379] = {.lex_state = 142}, + [380] = {.lex_state = 142}, + [381] = {.lex_state = 142}, + [382] = {.lex_state = 142}, + [383] = {.lex_state = 142}, + [384] = {.lex_state = 142}, + [385] = {.lex_state = 142}, + [386] = {.lex_state = 142}, + [387] = {.lex_state = 142}, + [388] = {.lex_state = 142}, + [389] = {.lex_state = 142}, + [390] = {.lex_state = 142}, + [391] = {.lex_state = 143}, + [392] = {.lex_state = 142}, + [393] = {.lex_state = 142}, + [394] = {.lex_state = 142}, + [395] = {.lex_state = 142}, + [396] = {.lex_state = 142}, + [397] = {.lex_state = 142}, + [398] = {.lex_state = 142}, + [399] = {.lex_state = 142}, + [400] = {.lex_state = 142}, + [401] = {.lex_state = 142}, + [402] = {.lex_state = 143}, + [403] = {.lex_state = 142}, + [404] = {.lex_state = 143}, + [405] = {.lex_state = 142}, + [406] = {.lex_state = 142}, + [407] = {.lex_state = 142}, + [408] = {.lex_state = 142}, + [409] = {.lex_state = 142}, + [410] = {.lex_state = 143}, + [411] = {.lex_state = 143}, + [412] = {.lex_state = 143}, + [413] = {.lex_state = 142}, + [414] = {.lex_state = 142}, + [415] = {.lex_state = 142}, + [416] = {.lex_state = 142}, + [417] = {.lex_state = 142}, + [418] = {.lex_state = 143}, + [419] = {.lex_state = 143}, + [420] = {.lex_state = 143}, + [421] = {.lex_state = 143}, + [422] = {.lex_state = 142}, + [423] = {.lex_state = 142}, + [424] = {.lex_state = 142}, + [425] = {.lex_state = 142}, + [426] = {.lex_state = 142}, + [427] = {.lex_state = 142}, + [428] = {.lex_state = 143}, + [429] = {.lex_state = 143}, + [430] = {.lex_state = 142}, + [431] = {.lex_state = 143}, + [432] = {.lex_state = 142}, + [433] = {.lex_state = 143}, + [434] = {.lex_state = 143}, + [435] = {.lex_state = 143}, + [436] = {.lex_state = 143}, + [437] = {.lex_state = 142}, + [438] = {.lex_state = 143}, + [439] = {.lex_state = 143}, + [440] = {.lex_state = 142}, + [441] = {.lex_state = 143}, + [442] = {.lex_state = 142}, + [443] = {.lex_state = 142}, + [444] = {.lex_state = 143}, + [445] = {.lex_state = 142}, + [446] = {.lex_state = 142}, + [447] = {.lex_state = 142}, + [448] = {.lex_state = 142}, + [449] = {.lex_state = 142}, + [450] = {.lex_state = 142}, + [451] = {.lex_state = 142}, + [452] = {.lex_state = 142}, + [453] = {.lex_state = 142}, + [454] = {.lex_state = 142}, + [455] = {.lex_state = 142}, + [456] = {.lex_state = 142}, + [457] = {.lex_state = 142}, + [458] = {.lex_state = 142}, + [459] = {.lex_state = 142}, + [460] = {.lex_state = 142}, + [461] = {.lex_state = 143}, + [462] = {.lex_state = 142}, + [463] = {.lex_state = 143}, + [464] = {.lex_state = 143}, + [465] = {.lex_state = 143}, + [466] = {.lex_state = 143}, + [467] = {.lex_state = 142}, + [468] = {.lex_state = 143}, + [469] = {.lex_state = 142}, + [470] = {.lex_state = 142}, + [471] = {.lex_state = 142}, + [472] = {.lex_state = 142}, + [473] = {.lex_state = 142}, + [474] = {.lex_state = 142}, + [475] = {.lex_state = 142}, + [476] = {.lex_state = 142}, + [477] = {.lex_state = 142}, + [478] = {.lex_state = 142}, + [479] = {.lex_state = 142}, + [480] = {.lex_state = 142}, + [481] = {.lex_state = 142}, + [482] = {.lex_state = 142}, + [483] = {.lex_state = 142}, + [484] = {.lex_state = 142}, + [485] = {.lex_state = 142}, + [486] = {.lex_state = 142}, + [487] = {.lex_state = 142}, + [488] = {.lex_state = 142}, + [489] = {.lex_state = 142}, + [490] = {.lex_state = 142}, + [491] = {.lex_state = 142}, + [492] = {.lex_state = 142}, + [493] = {.lex_state = 143}, + [494] = {.lex_state = 142}, + [495] = {.lex_state = 142}, + [496] = {.lex_state = 142}, + [497] = {.lex_state = 142}, + [498] = {.lex_state = 142}, + [499] = {.lex_state = 142}, + [500] = {.lex_state = 142}, + [501] = {.lex_state = 142}, + [502] = {.lex_state = 143}, + [503] = {.lex_state = 142}, + [504] = {.lex_state = 142}, + [505] = {.lex_state = 142}, + [506] = {.lex_state = 142}, + [507] = {.lex_state = 142}, + [508] = {.lex_state = 142}, + [509] = {.lex_state = 144}, + [510] = {.lex_state = 144}, + [511] = {.lex_state = 144}, + [512] = {.lex_state = 144}, + [513] = {.lex_state = 144}, + [514] = {.lex_state = 144}, + [515] = {.lex_state = 144}, + [516] = {.lex_state = 144}, + [517] = {.lex_state = 144}, + [518] = {.lex_state = 144}, + [519] = {.lex_state = 144}, + [520] = {.lex_state = 144}, + [521] = {.lex_state = 142}, + [522] = {.lex_state = 144}, + [523] = {.lex_state = 144}, + [524] = {.lex_state = 144}, + [525] = {.lex_state = 144}, + [526] = {.lex_state = 144}, + [527] = {.lex_state = 144}, + [528] = {.lex_state = 142}, + [529] = {.lex_state = 142}, + [530] = {.lex_state = 142}, + [531] = {.lex_state = 142}, + [532] = {.lex_state = 142}, + [533] = {.lex_state = 142}, + [534] = {.lex_state = 142}, + [535] = {.lex_state = 142}, + [536] = {.lex_state = 142}, + [537] = {.lex_state = 142}, + [538] = {.lex_state = 142}, + [539] = {.lex_state = 142}, + [540] = {.lex_state = 142}, + [541] = {.lex_state = 142}, + [542] = {.lex_state = 142}, + [543] = {.lex_state = 142}, + [544] = {.lex_state = 142}, + [545] = {.lex_state = 142}, + [546] = {.lex_state = 148}, + [547] = {.lex_state = 148}, + [548] = {.lex_state = 148}, + [549] = {.lex_state = 148}, + [550] = {.lex_state = 150}, + [551] = {.lex_state = 148}, + [552] = {.lex_state = 150}, + [553] = {.lex_state = 150}, + [554] = {.lex_state = 148}, + [555] = {.lex_state = 151}, + [556] = {.lex_state = 152}, + [557] = {.lex_state = 151}, + [558] = {.lex_state = 151}, + [559] = {.lex_state = 164}, + [560] = {.lex_state = 151}, + [561] = {.lex_state = 151}, + [562] = {.lex_state = 151}, + [563] = {.lex_state = 151}, + [564] = {.lex_state = 151}, + [565] = {.lex_state = 151}, + [566] = {.lex_state = 151}, + [567] = {.lex_state = 151}, + [568] = {.lex_state = 151}, + [569] = {.lex_state = 152}, + [570] = {.lex_state = 151}, + [571] = {.lex_state = 151}, + [572] = {.lex_state = 151}, + [573] = {.lex_state = 151}, + [574] = {.lex_state = 151}, + [575] = {.lex_state = 151}, + [576] = {.lex_state = 151}, + [577] = {.lex_state = 151}, + [578] = {.lex_state = 151}, + [579] = {.lex_state = 151}, + [580] = {.lex_state = 151}, + [581] = {.lex_state = 151}, + [582] = {.lex_state = 151}, + [583] = {.lex_state = 151}, + [584] = {.lex_state = 151}, + [585] = {.lex_state = 151}, + [586] = {.lex_state = 151}, + [587] = {.lex_state = 151}, + [588] = {.lex_state = 151}, + [589] = {.lex_state = 164}, + [590] = {.lex_state = 151}, + [591] = {.lex_state = 151}, + [592] = {.lex_state = 164}, + [593] = {.lex_state = 164}, + [594] = {.lex_state = 164}, + [595] = {.lex_state = 151}, + [596] = {.lex_state = 151}, + [597] = {.lex_state = 151}, + [598] = {.lex_state = 151}, + [599] = {.lex_state = 164}, + [600] = {.lex_state = 164}, + [601] = {.lex_state = 151}, + [602] = {.lex_state = 151}, + [603] = {.lex_state = 164}, + [604] = {.lex_state = 164}, + [605] = {.lex_state = 151}, + [606] = {.lex_state = 151}, + [607] = {.lex_state = 164}, + [608] = {.lex_state = 151}, + [609] = {.lex_state = 151}, + [610] = {.lex_state = 164}, + [611] = {.lex_state = 151}, + [612] = {.lex_state = 151}, + [613] = {.lex_state = 164}, + [614] = {.lex_state = 151}, + [615] = {.lex_state = 164}, + [616] = {.lex_state = 151}, + [617] = {.lex_state = 164}, + [618] = {.lex_state = 151}, + [619] = {.lex_state = 151}, + [620] = {.lex_state = 151}, + [621] = {.lex_state = 151}, + [622] = {.lex_state = 151}, + [623] = {.lex_state = 164}, + [624] = {.lex_state = 151}, + [625] = {.lex_state = 151}, + [626] = {.lex_state = 151}, + [627] = {.lex_state = 164}, + [628] = {.lex_state = 151}, + [629] = {.lex_state = 151}, + [630] = {.lex_state = 164}, + [631] = {.lex_state = 151}, + [632] = {.lex_state = 151}, + [633] = {.lex_state = 151}, + [634] = {.lex_state = 164}, + [635] = {.lex_state = 151}, + [636] = {.lex_state = 164}, + [637] = {.lex_state = 151}, + [638] = {.lex_state = 174}, + [639] = {.lex_state = 174}, + [640] = {.lex_state = 174}, + [641] = {.lex_state = 172}, + [642] = {.lex_state = 150}, + [643] = {.lex_state = 174}, + [644] = {.lex_state = 150}, + [645] = {.lex_state = 172}, + [646] = {.lex_state = 150}, + [647] = {.lex_state = 150}, + [648] = {.lex_state = 150}, + [649] = {.lex_state = 150}, + [650] = {.lex_state = 150}, + [651] = {.lex_state = 171}, + [652] = {.lex_state = 171}, + [653] = {.lex_state = 150}, + [654] = {.lex_state = 171}, + [655] = {.lex_state = 173}, + [656] = {.lex_state = 172}, + [657] = {.lex_state = 174}, + [658] = {.lex_state = 150}, + [659] = {.lex_state = 150}, + [660] = {.lex_state = 173}, + [661] = {.lex_state = 150}, + [662] = {.lex_state = 150}, + [663] = {.lex_state = 150}, + [664] = {.lex_state = 150}, + [665] = {.lex_state = 171}, + [666] = {.lex_state = 173}, + [667] = {.lex_state = 172}, + [668] = {.lex_state = 174}, + [669] = {.lex_state = 172}, + [670] = {.lex_state = 151}, + [671] = {.lex_state = 151}, + [672] = {.lex_state = 172}, + [673] = {.lex_state = 151}, + [674] = {.lex_state = 151}, + [675] = {.lex_state = 171}, + [676] = {.lex_state = 150}, + [677] = {.lex_state = 174}, + [678] = {.lex_state = 151}, + [679] = {.lex_state = 150}, + [680] = {.lex_state = 172}, + [681] = {.lex_state = 150}, + [682] = {.lex_state = 173}, + [683] = {.lex_state = 151}, + [684] = {.lex_state = 172}, + [685] = {.lex_state = 150}, + [686] = {.lex_state = 174}, + [687] = {.lex_state = 174}, + [688] = {.lex_state = 171}, + [689] = {.lex_state = 172}, + [690] = {.lex_state = 151}, + [691] = {.lex_state = 171}, + [692] = {.lex_state = 150}, + [693] = {.lex_state = 150}, + [694] = {.lex_state = 174}, + [695] = {.lex_state = 150}, + [696] = {.lex_state = 173}, + [697] = {.lex_state = 150}, + [698] = {.lex_state = 150}, + [699] = {.lex_state = 173}, + [700] = {.lex_state = 174}, + [701] = {.lex_state = 150}, + [702] = {.lex_state = 150}, + [703] = {.lex_state = 150}, + [704] = {.lex_state = 172}, + [705] = {.lex_state = 171}, + [706] = {.lex_state = 171}, + [707] = {.lex_state = 150}, + [708] = {.lex_state = 171}, + [709] = {.lex_state = 171}, + [710] = {.lex_state = 150}, + [711] = {.lex_state = 171}, + [712] = {.lex_state = 171}, + [713] = {.lex_state = 171}, + [714] = {.lex_state = 150}, + [715] = {.lex_state = 171}, + [716] = {.lex_state = 171}, + [717] = {.lex_state = 150}, + [718] = {.lex_state = 150}, + [719] = {.lex_state = 171}, + [720] = {.lex_state = 171}, + [721] = {.lex_state = 150}, + [722] = {.lex_state = 150}, + [723] = {.lex_state = 150}, + [724] = {.lex_state = 150}, + [725] = {.lex_state = 171}, + [726] = {.lex_state = 151}, + [727] = {.lex_state = 150}, + [728] = {.lex_state = 171}, + [729] = {.lex_state = 150}, + [730] = {.lex_state = 171}, + [731] = {.lex_state = 150}, + [732] = {.lex_state = 150}, + [733] = {.lex_state = 150}, + [734] = {.lex_state = 171}, + [735] = {.lex_state = 150}, + [736] = {.lex_state = 150}, + [737] = {.lex_state = 148}, + [738] = {.lex_state = 171}, + [739] = {.lex_state = 171}, + [740] = {.lex_state = 171}, + [741] = {.lex_state = 171}, + [742] = {.lex_state = 171}, + [743] = {.lex_state = 171}, + [744] = {.lex_state = 171}, + [745] = {.lex_state = 171}, + [746] = {.lex_state = 171}, + [747] = {.lex_state = 171}, + [748] = {.lex_state = 171}, + [749] = {.lex_state = 171}, + [750] = {.lex_state = 171}, + [751] = {.lex_state = 171}, + [752] = {.lex_state = 171}, + [753] = {.lex_state = 171}, + [754] = {.lex_state = 171}, + [755] = {.lex_state = 171}, + [756] = {.lex_state = 150}, + [757] = {.lex_state = 151}, + [758] = {.lex_state = 150}, + [759] = {.lex_state = 148}, + [760] = {.lex_state = 171}, + [761] = {.lex_state = 148}, + [762] = {.lex_state = 171}, + [763] = {.lex_state = 171}, + [764] = {.lex_state = 171}, + [765] = {.lex_state = 171}, + [766] = {.lex_state = 151}, + [767] = {.lex_state = 171}, + [768] = {.lex_state = 171}, + [769] = {.lex_state = 148}, + [770] = {.lex_state = 171}, + [771] = {.lex_state = 171}, + [772] = {.lex_state = 151}, + [773] = {.lex_state = 148}, + [774] = {.lex_state = 151}, + [775] = {.lex_state = 171}, + [776] = {.lex_state = 171}, + [777] = {.lex_state = 171}, + [778] = {.lex_state = 171}, + [779] = {.lex_state = 171}, + [780] = {.lex_state = 171}, + [781] = {.lex_state = 171}, + [782] = {.lex_state = 171}, + [783] = {.lex_state = 171}, + [784] = {.lex_state = 171}, + [785] = {.lex_state = 171}, + [786] = {.lex_state = 171}, + [787] = {.lex_state = 171}, + [788] = {.lex_state = 171}, + [789] = {.lex_state = 171}, + [790] = {.lex_state = 171}, + [791] = {.lex_state = 148}, + [792] = {.lex_state = 171}, + [793] = {.lex_state = 153}, + [794] = {.lex_state = 153}, + [795] = {.lex_state = 154}, + [796] = {.lex_state = 153}, + [797] = {.lex_state = 153}, + [798] = {.lex_state = 153}, + [799] = {.lex_state = 153}, + [800] = {.lex_state = 153}, + [801] = {.lex_state = 148}, + [802] = {.lex_state = 153}, + [803] = {.lex_state = 153}, + [804] = {.lex_state = 150}, + [805] = {.lex_state = 153}, + [806] = {.lex_state = 153}, + [807] = {.lex_state = 150}, + [808] = {.lex_state = 150}, + [809] = {.lex_state = 153}, + [810] = {.lex_state = 150}, + [811] = {.lex_state = 153}, + [812] = {.lex_state = 148}, + [813] = {.lex_state = 150}, + [814] = {.lex_state = 150}, + [815] = {.lex_state = 150}, + [816] = {.lex_state = 153}, + [817] = {.lex_state = 150}, + [818] = {.lex_state = 153}, + [819] = {.lex_state = 148}, + [820] = {.lex_state = 150}, + [821] = {.lex_state = 150}, + [822] = {.lex_state = 148}, + [823] = {.lex_state = 151}, + [824] = {.lex_state = 151}, + [825] = {.lex_state = 151}, + [826] = {.lex_state = 155}, + [827] = {.lex_state = 148}, + [828] = {.lex_state = 155}, + [829] = {.lex_state = 155}, + [830] = {.lex_state = 155}, + [831] = {.lex_state = 156}, + [832] = {.lex_state = 151}, + [833] = {.lex_state = 156}, + [834] = {.lex_state = 148}, + [835] = {.lex_state = 151}, + [836] = {.lex_state = 151}, + [837] = {.lex_state = 156}, + [838] = {.lex_state = 151}, + [839] = {.lex_state = 151}, + [840] = {.lex_state = 156}, + [841] = {.lex_state = 157}, + [842] = {.lex_state = 157}, + [843] = {.lex_state = 150}, + [844] = {.lex_state = 150}, + [845] = {.lex_state = 150}, + [846] = {.lex_state = 150}, + [847] = {.lex_state = 151}, + [848] = {.lex_state = 150}, + [849] = {.lex_state = 151}, + [850] = {.lex_state = 151}, + [851] = {.lex_state = 150}, + [852] = {.lex_state = 150}, + [853] = {.lex_state = 150}, + [854] = {.lex_state = 150}, + [855] = {.lex_state = 151}, + [856] = {.lex_state = 164}, + [857] = {.lex_state = 151}, + [858] = {.lex_state = 151}, + [859] = {.lex_state = 151}, + [860] = {.lex_state = 150}, + [861] = {.lex_state = 151}, + [862] = {.lex_state = 164}, + [863] = {.lex_state = 153}, + [864] = {.lex_state = 153}, + [865] = {.lex_state = 150}, + [866] = {.lex_state = 153}, + [867] = {.lex_state = 164}, + [868] = {.lex_state = 164}, + [869] = {.lex_state = 164}, + [870] = {.lex_state = 164}, + [871] = {.lex_state = 164}, + [872] = {.lex_state = 150}, + [873] = {.lex_state = 164}, + [874] = {.lex_state = 153}, + [875] = {.lex_state = 164}, + [876] = {.lex_state = 164}, + [877] = {.lex_state = 164}, + [878] = {.lex_state = 150}, + [879] = {.lex_state = 150}, + [880] = {.lex_state = 153}, + [881] = {.lex_state = 150}, + [882] = {.lex_state = 153}, + [883] = {.lex_state = 164}, + [884] = {.lex_state = 153}, + [885] = {.lex_state = 153}, + [886] = {.lex_state = 151}, + [887] = {.lex_state = 164}, + [888] = {.lex_state = 153}, + [889] = {.lex_state = 164}, + [890] = {.lex_state = 164}, + [891] = {.lex_state = 164}, + [892] = {.lex_state = 153}, + [893] = {.lex_state = 153}, + [894] = {.lex_state = 164}, + [895] = {.lex_state = 164}, + [896] = {.lex_state = 164}, + [897] = {.lex_state = 151}, + [898] = {.lex_state = 153}, + [899] = {.lex_state = 150}, + [900] = {.lex_state = 150}, + [901] = {.lex_state = 150}, + [902] = {.lex_state = 153}, + [903] = {.lex_state = 164}, + [904] = {.lex_state = 164}, + [905] = {.lex_state = 164}, + [906] = {.lex_state = 153}, + [907] = {.lex_state = 151}, + [908] = {.lex_state = 153}, + [909] = {.lex_state = 153}, + [910] = {.lex_state = 150}, + [911] = {.lex_state = 164}, + [912] = {.lex_state = 150}, + [913] = {.lex_state = 150}, + [914] = {.lex_state = 164}, + [915] = {.lex_state = 150}, + [916] = {.lex_state = 153}, + [917] = {.lex_state = 153}, + [918] = {.lex_state = 153}, + [919] = {.lex_state = 150}, + [920] = {.lex_state = 164}, + [921] = {.lex_state = 153}, + [922] = {.lex_state = 153}, + [923] = {.lex_state = 150}, + [924] = {.lex_state = 151}, + [925] = {.lex_state = 153}, + [926] = {.lex_state = 153}, + [927] = {.lex_state = 150}, + [928] = {.lex_state = 164}, + [929] = {.lex_state = 153}, + [930] = {.lex_state = 151}, + [931] = {.lex_state = 164}, + [932] = {.lex_state = 153}, + [933] = {.lex_state = 164}, + [934] = {.lex_state = 153}, + [935] = {.lex_state = 164}, + [936] = {.lex_state = 150}, + [937] = {.lex_state = 150}, + [938] = {.lex_state = 150}, + [939] = {.lex_state = 150}, + [940] = {.lex_state = 164}, + [941] = {.lex_state = 150}, + [942] = {.lex_state = 164}, + [943] = {.lex_state = 164}, + [944] = {.lex_state = 150}, + [945] = {.lex_state = 153}, + [946] = {.lex_state = 153}, + [947] = {.lex_state = 150}, + [948] = {.lex_state = 153}, + [949] = {.lex_state = 153}, + [950] = {.lex_state = 164}, + [951] = {.lex_state = 153}, + [952] = {.lex_state = 164}, + [953] = {.lex_state = 164}, + [954] = {.lex_state = 150}, + [955] = {.lex_state = 153}, + [956] = {.lex_state = 164}, + [957] = {.lex_state = 164}, + [958] = {.lex_state = 164}, + [959] = {.lex_state = 164}, + [960] = {.lex_state = 164}, + [961] = {.lex_state = 164}, + [962] = {.lex_state = 164}, + [963] = {.lex_state = 164}, + [964] = {.lex_state = 164}, + [965] = {.lex_state = 164}, + [966] = {.lex_state = 164}, + [967] = {.lex_state = 150}, + [968] = {.lex_state = 164}, + [969] = {.lex_state = 164}, + [970] = {.lex_state = 150}, + [971] = {.lex_state = 164}, + [972] = {.lex_state = 164}, + [973] = {.lex_state = 153}, + [974] = {.lex_state = 153}, + [975] = {.lex_state = 150}, + [976] = {.lex_state = 153}, + [977] = {.lex_state = 153}, + [978] = {.lex_state = 150}, + [979] = {.lex_state = 150}, + [980] = {.lex_state = 153}, + [981] = {.lex_state = 150}, + [982] = {.lex_state = 153}, + [983] = {.lex_state = 153}, + [984] = {.lex_state = 164}, + [985] = {.lex_state = 150}, + [986] = {.lex_state = 153}, + [987] = {.lex_state = 153}, + [988] = {.lex_state = 164}, + [989] = {.lex_state = 153}, + [990] = {.lex_state = 153}, + [991] = {.lex_state = 150}, + [992] = {.lex_state = 150}, + [993] = {.lex_state = 164}, + [994] = {.lex_state = 164}, + [995] = {.lex_state = 150}, + [996] = {.lex_state = 150}, + [997] = {.lex_state = 150}, + [998] = {.lex_state = 150}, + [999] = {.lex_state = 164}, + [1000] = {.lex_state = 150}, + [1001] = {.lex_state = 150}, + [1002] = {.lex_state = 150}, + [1003] = {.lex_state = 150}, + [1004] = {.lex_state = 164}, + [1005] = {.lex_state = 153}, + [1006] = {.lex_state = 150}, + [1007] = {.lex_state = 150}, + [1008] = {.lex_state = 150}, + [1009] = {.lex_state = 150}, + [1010] = {.lex_state = 150}, + [1011] = {.lex_state = 164}, + [1012] = {.lex_state = 153}, + [1013] = {.lex_state = 153}, + [1014] = {.lex_state = 164}, + [1015] = {.lex_state = 143}, + [1016] = {.lex_state = 150}, + [1017] = {.lex_state = 150}, + [1018] = {.lex_state = 150}, + [1019] = {.lex_state = 150}, + [1020] = {.lex_state = 164}, + [1021] = {.lex_state = 164}, + [1022] = {.lex_state = 150}, + [1023] = {.lex_state = 164}, + [1024] = {.lex_state = 150}, + [1025] = {.lex_state = 153}, + [1026] = {.lex_state = 164}, + [1027] = {.lex_state = 153}, + [1028] = {.lex_state = 153}, + [1029] = {.lex_state = 153}, + [1030] = {.lex_state = 150}, + [1031] = {.lex_state = 144}, + [1032] = {.lex_state = 153}, + [1033] = {.lex_state = 153}, + [1034] = {.lex_state = 153}, + [1035] = {.lex_state = 153}, + [1036] = {.lex_state = 153}, + [1037] = {.lex_state = 153}, + [1038] = {.lex_state = 150}, + [1039] = {.lex_state = 150}, + [1040] = {.lex_state = 150}, + [1041] = {.lex_state = 150}, + [1042] = {.lex_state = 164}, + [1043] = {.lex_state = 150}, + [1044] = {.lex_state = 150}, + [1045] = {.lex_state = 150}, + [1046] = {.lex_state = 150}, + [1047] = {.lex_state = 150}, + [1048] = {.lex_state = 150}, + [1049] = {.lex_state = 150}, + [1050] = {.lex_state = 150}, + [1051] = {.lex_state = 150}, + [1052] = {.lex_state = 150}, + [1053] = {.lex_state = 150}, + [1054] = {.lex_state = 150}, + [1055] = {.lex_state = 150}, + [1056] = {.lex_state = 150}, + [1057] = {.lex_state = 150}, + [1058] = {.lex_state = 150}, + [1059] = {.lex_state = 150}, + [1060] = {.lex_state = 164}, + [1061] = {.lex_state = 164}, + [1062] = {.lex_state = 164}, + [1063] = {.lex_state = 150}, + [1064] = {.lex_state = 150}, + [1065] = {.lex_state = 150}, + [1066] = {.lex_state = 150}, + [1067] = {.lex_state = 164}, + [1068] = {.lex_state = 164}, + [1069] = {.lex_state = 164}, + [1070] = {.lex_state = 150}, + [1071] = {.lex_state = 150}, + [1072] = {.lex_state = 150}, + [1073] = {.lex_state = 150}, + [1074] = {.lex_state = 150}, + [1075] = {.lex_state = 158}, + [1076] = {.lex_state = 164}, + [1077] = {.lex_state = 159}, + [1078] = {.lex_state = 164}, + [1079] = {.lex_state = 164}, + [1080] = {.lex_state = 164}, + [1081] = {.lex_state = 148}, + [1082] = {.lex_state = 148}, + [1083] = {.lex_state = 148}, + [1084] = {.lex_state = 160}, + [1085] = {.lex_state = 160}, + [1086] = {.lex_state = 160}, + [1087] = {.lex_state = 158}, + [1088] = {.lex_state = 160}, + [1089] = {.lex_state = 160}, + [1090] = {.lex_state = 160}, + [1091] = {.lex_state = 160}, + [1092] = {.lex_state = 160}, + [1093] = {.lex_state = 158}, + [1094] = {.lex_state = 160}, + [1095] = {.lex_state = 160}, + [1096] = {.lex_state = 160}, + [1097] = {.lex_state = 158}, + [1098] = {.lex_state = 160}, + [1099] = {.lex_state = 160}, + [1100] = {.lex_state = 160}, + [1101] = {.lex_state = 160}, + [1102] = {.lex_state = 160}, + [1103] = {.lex_state = 158}, + [1104] = {.lex_state = 160}, + [1105] = {.lex_state = 160}, + [1106] = {.lex_state = 160}, + [1107] = {.lex_state = 160}, + [1108] = {.lex_state = 160}, + [1109] = {.lex_state = 160}, + [1110] = {.lex_state = 160}, + [1111] = {.lex_state = 160}, + [1112] = {.lex_state = 160}, + [1113] = {.lex_state = 159}, + [1114] = {.lex_state = 160}, + [1115] = {.lex_state = 160}, + [1116] = {.lex_state = 160}, + [1117] = {.lex_state = 160}, + [1118] = {.lex_state = 160}, + [1119] = {.lex_state = 160}, + [1120] = {.lex_state = 160}, + [1121] = {.lex_state = 160}, + [1122] = {.lex_state = 160}, + [1123] = {.lex_state = 160}, + [1124] = {.lex_state = 160}, + [1125] = {.lex_state = 160}, + [1126] = {.lex_state = 160}, + [1127] = {.lex_state = 160}, + [1128] = {.lex_state = 160}, + [1129] = {.lex_state = 160}, + [1130] = {.lex_state = 160}, + [1131] = {.lex_state = 158}, + [1132] = {.lex_state = 160}, + [1133] = {.lex_state = 158}, + [1134] = {.lex_state = 160}, + [1135] = {.lex_state = 160}, + [1136] = {.lex_state = 160}, + [1137] = {.lex_state = 160}, + [1138] = {.lex_state = 160}, + [1139] = {.lex_state = 160}, + [1140] = {.lex_state = 158}, + [1141] = {.lex_state = 160}, + [1142] = {.lex_state = 160}, + [1143] = {.lex_state = 160}, + [1144] = {.lex_state = 158}, + [1145] = {.lex_state = 160}, + [1146] = {.lex_state = 158}, + [1147] = {.lex_state = 160}, + [1148] = {.lex_state = 160}, + [1149] = {.lex_state = 160}, + [1150] = {.lex_state = 160}, + [1151] = {.lex_state = 158}, + [1152] = {.lex_state = 160}, + [1153] = {.lex_state = 158}, + [1154] = {.lex_state = 158}, + [1155] = {.lex_state = 160}, + [1156] = {.lex_state = 160}, + [1157] = {.lex_state = 158}, + [1158] = {.lex_state = 160}, + [1159] = {.lex_state = 158}, + [1160] = {.lex_state = 158}, + [1161] = {.lex_state = 160}, + [1162] = {.lex_state = 160}, + [1163] = {.lex_state = 158}, + [1164] = {.lex_state = 159}, + [1165] = {.lex_state = 160}, + [1166] = {.lex_state = 159}, + [1167] = {.lex_state = 158}, + [1168] = {.lex_state = 159}, + [1169] = {.lex_state = 159}, + [1170] = {.lex_state = 148}, + [1171] = {.lex_state = 159}, + [1172] = {.lex_state = 159}, + [1173] = {.lex_state = 160}, + [1174] = {.lex_state = 159}, + [1175] = {.lex_state = 148}, + [1176] = {.lex_state = 159}, + [1177] = {.lex_state = 160}, + [1178] = {.lex_state = 159}, + [1179] = {.lex_state = 159}, + [1180] = {.lex_state = 159}, + [1181] = {.lex_state = 159}, + [1182] = {.lex_state = 159}, + [1183] = {.lex_state = 159}, + [1184] = {.lex_state = 159}, + [1185] = {.lex_state = 160}, + [1186] = {.lex_state = 159}, + [1187] = {.lex_state = 159}, + [1188] = {.lex_state = 159}, + [1189] = {.lex_state = 159}, + [1190] = {.lex_state = 159}, + [1191] = {.lex_state = 159}, + [1192] = {.lex_state = 159}, + [1193] = {.lex_state = 159}, + [1194] = {.lex_state = 159}, + [1195] = {.lex_state = 148}, + [1196] = {.lex_state = 159}, + [1197] = {.lex_state = 159}, + [1198] = {.lex_state = 159}, + [1199] = {.lex_state = 159}, + [1200] = {.lex_state = 164}, + [1201] = {.lex_state = 148}, + [1202] = {.lex_state = 164}, + [1203] = {.lex_state = 148}, + [1204] = {.lex_state = 148}, + [1205] = {.lex_state = 161}, + [1206] = {.lex_state = 148}, + [1207] = {.lex_state = 158}, + [1208] = {.lex_state = 161}, + [1209] = {.lex_state = 158}, + [1210] = {.lex_state = 159}, + [1211] = {.lex_state = 158}, + [1212] = {.lex_state = 158}, + [1213] = {.lex_state = 164}, + [1214] = {.lex_state = 164}, + [1215] = {.lex_state = 158}, + [1216] = {.lex_state = 148}, + [1217] = {.lex_state = 161}, + [1218] = {.lex_state = 164}, + [1219] = {.lex_state = 158}, + [1220] = {.lex_state = 161}, + [1221] = {.lex_state = 161}, + [1222] = {.lex_state = 158}, + [1223] = {.lex_state = 161}, + [1224] = {.lex_state = 164}, + [1225] = {.lex_state = 148}, + [1226] = {.lex_state = 148}, + [1227] = {.lex_state = 148}, + [1228] = {.lex_state = 148}, + [1229] = {.lex_state = 161}, + [1230] = {.lex_state = 148}, + [1231] = {.lex_state = 148}, + [1232] = {.lex_state = 162}, + [1233] = {.lex_state = 158}, + [1234] = {.lex_state = 148}, + [1235] = {.lex_state = 148}, + [1236] = {.lex_state = 148}, + [1237] = {.lex_state = 162}, + [1238] = {.lex_state = 148}, + [1239] = {.lex_state = 148}, + [1240] = {.lex_state = 148}, + [1241] = {.lex_state = 158}, + [1242] = {.lex_state = 162}, + [1243] = {.lex_state = 159}, + [1244] = {.lex_state = 159}, + [1245] = {.lex_state = 148}, + [1246] = {.lex_state = 148}, + [1247] = {.lex_state = 148}, + [1248] = {.lex_state = 148}, + [1249] = {.lex_state = 148}, + [1250] = {.lex_state = 148}, + [1251] = {.lex_state = 148}, + [1252] = {.lex_state = 148}, + [1253] = {.lex_state = 148}, + [1254] = {.lex_state = 148}, + [1255] = {.lex_state = 148}, + [1256] = {.lex_state = 148}, + [1257] = {.lex_state = 148}, + [1258] = {.lex_state = 159}, + [1259] = {.lex_state = 148}, + [1260] = {.lex_state = 148}, + [1261] = {.lex_state = 148}, + [1262] = {.lex_state = 148}, + [1263] = {.lex_state = 159}, + [1264] = {.lex_state = 148}, + [1265] = {.lex_state = 158}, + [1266] = {.lex_state = 148}, + [1267] = {.lex_state = 161}, + [1268] = {.lex_state = 159}, + [1269] = {.lex_state = 159}, + [1270] = {.lex_state = 161}, + [1271] = {.lex_state = 159}, + [1272] = {.lex_state = 159}, + [1273] = {.lex_state = 161}, + [1274] = {.lex_state = 0}, + [1275] = {.lex_state = 163}, + [1276] = {.lex_state = 161}, + [1277] = {.lex_state = 0}, + [1278] = {.lex_state = 163}, [1279] = {.lex_state = 0}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, + [1281] = {.lex_state = 163}, [1282] = {.lex_state = 0}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 132}, + [1284] = {.lex_state = 159}, + [1285] = {.lex_state = 163}, + [1286] = {.lex_state = 0}, [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 132}, - [1292] = {.lex_state = 0}, + [1288] = {.lex_state = 163}, + [1289] = {.lex_state = 163}, + [1290] = {.lex_state = 163}, + [1291] = {.lex_state = 148}, + [1292] = {.lex_state = 148, .external_lex_state = 1}, + [1293] = {.lex_state = 148, .external_lex_state = 1}, + [1294] = {.lex_state = 148, .external_lex_state = 1}, + [1295] = {.lex_state = 148, .external_lex_state = 1}, + [1296] = {.lex_state = 159}, + [1297] = {.lex_state = 162}, + [1298] = {.lex_state = 148, .external_lex_state = 1}, + [1299] = {.lex_state = 148, .external_lex_state = 1}, + [1300] = {.lex_state = 148, .external_lex_state = 1}, + [1301] = {.lex_state = 148}, + [1302] = {.lex_state = 162}, + [1303] = {.lex_state = 148}, + [1304] = {.lex_state = 162}, + [1305] = {.lex_state = 162}, + [1306] = {.lex_state = 162}, + [1307] = {.lex_state = 148}, + [1308] = {.lex_state = 148}, + [1309] = {.lex_state = 162}, + [1310] = {.lex_state = 162}, + [1311] = {.lex_state = 148}, + [1312] = {.lex_state = 148}, + [1313] = {.lex_state = 148, .external_lex_state = 1}, + [1314] = {.lex_state = 162}, + [1315] = {.lex_state = 162}, + [1316] = {.lex_state = 162}, + [1317] = {.lex_state = 148}, + [1318] = {.lex_state = 148, .external_lex_state = 1}, + [1319] = {.lex_state = 148, .external_lex_state = 1}, + [1320] = {.lex_state = 148, .external_lex_state = 1}, + [1321] = {.lex_state = 148, .external_lex_state = 1}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 148, .external_lex_state = 1}, + [1324] = {.lex_state = 148}, + [1325] = {.lex_state = 148, .external_lex_state = 1}, + [1326] = {.lex_state = 162}, + [1327] = {.lex_state = 162}, + [1328] = {.lex_state = 148}, + [1329] = {.lex_state = 148, .external_lex_state = 1}, + [1330] = {.lex_state = 148, .external_lex_state = 1}, + [1331] = {.lex_state = 148, .external_lex_state = 1}, + [1332] = {.lex_state = 0}, + [1333] = {.lex_state = 172}, + [1334] = {.lex_state = 148}, + [1335] = {.lex_state = 161}, + [1336] = {.lex_state = 0}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 148}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 161}, + [1341] = {.lex_state = 0}, + [1342] = {.lex_state = 159}, + [1343] = {.lex_state = 148}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 159}, + [1346] = {.lex_state = 0}, + [1347] = {.lex_state = 148}, + [1348] = {.lex_state = 159}, + [1349] = {.lex_state = 0}, + [1350] = {.lex_state = 158}, + [1351] = {.lex_state = 148}, + [1352] = {.lex_state = 148}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, + [1355] = {.lex_state = 161}, + [1356] = {.lex_state = 148, .external_lex_state = 1}, + [1357] = {.lex_state = 162}, + [1358] = {.lex_state = 0}, + [1359] = {.lex_state = 159}, + [1360] = {.lex_state = 159}, + [1361] = {.lex_state = 162}, + [1362] = {.lex_state = 148}, + [1363] = {.lex_state = 162}, + [1364] = {.lex_state = 148}, + [1365] = {.lex_state = 162}, + [1366] = {.lex_state = 148}, + [1367] = {.lex_state = 162}, + [1368] = {.lex_state = 161}, + [1369] = {.lex_state = 161}, + [1370] = {.lex_state = 148}, + [1371] = {.lex_state = 162}, + [1372] = {.lex_state = 162}, + [1373] = {.lex_state = 161}, + [1374] = {.lex_state = 162}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 148}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 162}, + [1379] = {.lex_state = 148}, + [1380] = {.lex_state = 0}, + [1381] = {.lex_state = 148}, + [1382] = {.lex_state = 172}, + [1383] = {.lex_state = 148}, + [1384] = {.lex_state = 148}, + [1385] = {.lex_state = 148}, + [1386] = {.lex_state = 162}, + [1387] = {.lex_state = 161}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 162}, + [1392] = {.lex_state = 162}, + [1393] = {.lex_state = 148}, + [1394] = {.lex_state = 0}, + [1395] = {.lex_state = 148}, + [1396] = {.lex_state = 148}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 148}, + [1399] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 172}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 159}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 148}, + [1407] = {.lex_state = 162}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 172}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 172}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, + [1417] = {.lex_state = 0}, + [1418] = {.lex_state = 0}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 162}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 0}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, + [1428] = {.lex_state = 0}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 159}, + [1433] = {.lex_state = 172}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 172}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 0}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 148}, + [1444] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 148}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 148}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 162}, + [1451] = {.lex_state = 148}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 0}, + [1454] = {.lex_state = 172}, + [1455] = {.lex_state = 172}, + [1456] = {.lex_state = 0}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 172}, + [1459] = {.lex_state = 0}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, + [1463] = {.lex_state = 0}, + [1464] = {.lex_state = 172}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 0}, + [1467] = {.lex_state = 162}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 162}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 148}, + [1472] = {.lex_state = 172}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 0}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 0}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, + [1482] = {.lex_state = 0}, + [1483] = {.lex_state = 0}, + [1484] = {.lex_state = 148}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 162}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 0}, + [1491] = {.lex_state = 0}, + [1492] = {.lex_state = 172}, + [1493] = {.lex_state = 172}, + [1494] = {.lex_state = 0}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 0}, + [1499] = {.lex_state = 0}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 171}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 164}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 171}, + [1514] = {.lex_state = 172}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 148}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 0}, + [1526] = {.lex_state = 162}, + [1527] = {.lex_state = 172}, + [1528] = {.lex_state = 0}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 0}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 0}, + [1534] = {.lex_state = 172}, + [1535] = {.lex_state = 148}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 172}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 172}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 171}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 172}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 171}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 148}, + [1562] = {.lex_state = 172}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 0}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 148}, + [1589] = {.lex_state = 148}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 162}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 148}, + [1597] = {.lex_state = 172}, + [1598] = {.lex_state = 172}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 172}, + [1603] = {.lex_state = 172}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 171}, + [1606] = {.lex_state = 172}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 0}, + [1609] = {.lex_state = 162}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 162}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 162}, + [1616] = {.lex_state = 162}, + [1617] = {.lex_state = 162}, + [1618] = {.lex_state = 162}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 172}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 162}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 162}, + [1630] = {.lex_state = 0}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 148}, + [1635] = {.lex_state = 148}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 0}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 162}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 162}, + [1647] = {.lex_state = 0}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 171}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 162}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 171}, + [1658] = {.lex_state = 171}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 162}, + [1662] = {.lex_state = 171}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 171}, + [1665] = {.lex_state = 162}, + [1666] = {.lex_state = 172}, + [1667] = {.lex_state = 0}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 0}, + [1670] = {.lex_state = 0}, + [1671] = {.lex_state = 172}, + [1672] = {.lex_state = 0}, + [1673] = {.lex_state = 0}, + [1674] = {.lex_state = 148}, + [1675] = {.lex_state = 162}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 171}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 0}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 162}, + [1686] = {.lex_state = 162}, + [1687] = {.lex_state = 171}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 0}, + [1690] = {.lex_state = 171}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 162}, + [1693] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 171}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 171}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 171}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 171}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, + [1712] = {.lex_state = 172}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 162}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 171}, + [1717] = {.lex_state = 162}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 162}, + [1720] = {.lex_state = 162}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 0}, + [1725] = {.lex_state = 0}, + [1726] = {.lex_state = 162}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 0}, + [1729] = {.lex_state = 0}, + [1730] = {.lex_state = 148}, + [1731] = {.lex_state = 0}, + [1732] = {.lex_state = 162}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 162}, + [1735] = {.lex_state = 162}, + [1736] = {.lex_state = 162}, + [1737] = {.lex_state = 0}, + [1738] = {.lex_state = 0}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 0}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 0}, + [1744] = {.lex_state = 0}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 162}, + [1747] = {.lex_state = 162}, + [1748] = {.lex_state = 172}, + [1749] = {.lex_state = 162}, + [1750] = {.lex_state = 171}, + [1751] = {.lex_state = 171}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 172}, + [1757] = {.lex_state = 162}, + [1758] = {.lex_state = 0}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 0}, + [1773] = {.lex_state = 148}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 0}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 172}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 172}, + [1786] = {.lex_state = 172}, + [1787] = {.lex_state = 172}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 0}, + [1807] = {.lex_state = 0}, + [1808] = {.lex_state = 0}, + [1809] = {.lex_state = 0}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 172}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 0}, + [1819] = {.lex_state = 0}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 0}, + [1823] = {.lex_state = 0}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 0}, + [1827] = {.lex_state = 172}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 0}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 0}, + [1839] = {.lex_state = 172}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 0}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 172}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 0}, + [1853] = {.lex_state = 148}, + [1854] = {.lex_state = 148}, + [1855] = {.lex_state = 0}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 172}, + [1860] = {.lex_state = 0}, + [1861] = {.lex_state = 172}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 0}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 172}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 148}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 162}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 0}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 0}, + [1876] = {.lex_state = 0}, + [1877] = {.lex_state = 172}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 0}, + [1887] = {.lex_state = 172}, + [1888] = {.lex_state = 172}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 0}, }; enum { @@ -6119,28 +7359,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1), [anon_sym_erlang] = ACTIONS(1), [anon_sym_javascript] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_as] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), [anon_sym_size] = ACTIONS(1), - [anon_sym_external] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), [anon_sym_fn] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), + [anon_sym_external] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_EQ_EQ] = ACTIONS(1), @@ -6161,18 +7401,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_DOT] = ACTIONS(1), [anon_sym_SLASH_DOT] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), [anon_sym_todo] = ACTIONS(1), + [anon_sym_panic] = ACTIONS(1), + [anon_sym_echo] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_assert] = ACTIONS(1), + [anon_sym_use] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), [sym_visibility_modifier] = ACTIONS(1), [sym_opacity_modifier] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_DQUOTE2] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), + [aux_sym_escape_sequence_token1] = ACTIONS(1), + [aux_sym_escape_sequence_token2] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym__hex] = ACTIONS(1), [sym__decimal] = ACTIONS(1), @@ -6202,430 +7447,1163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1187), - [sym__statement] = STATE(2), - [sym_target_group] = STATE(2), - [sym_import] = STATE(2), - [sym_constant] = STATE(2), - [sym_external_type] = STATE(2), - [sym_external_function] = STATE(2), - [sym_function] = STATE(2), - [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(455), - [sym__expression] = STATE(106), - [sym_binary_expression] = STATE(106), - [sym__expression_unit] = STATE(106), - [sym_record] = STATE(39), - [sym_todo] = STATE(106), - [sym_tuple] = STATE(40), - [sym_list] = STATE(106), - [sym__expression_bit_string] = STATE(106), - [sym_anonymous_function] = STATE(29), - [sym_expression_group] = STATE(8), - [sym_case] = STATE(8), - [sym_let] = STATE(106), - [sym_assert] = STATE(106), - [sym_negation] = STATE(106), - [sym_record_update] = STATE(39), - [sym__maybe_tuple_expression] = STATE(1178), - [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1232), - [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1051), - [sym_function_call] = STATE(8), - [sym_type_definition] = STATE(2), - [sym_type_alias] = STATE(2), - [sym_string] = STATE(106), - [sym_integer] = STATE(106), - [sym_identifier] = STATE(25), - [sym_constructor_name] = STATE(6), - [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(2), + [sym_source_file] = STATE(1864), + [sym__module_statement] = STATE(4), + [sym_target_group] = STATE(4), + [sym_attribute] = STATE(4), + [sym_import] = STATE(4), + [sym_constant] = STATE(4), + [sym_external_type] = STATE(4), + [sym_external_function] = STATE(4), + [sym_function] = STATE(4), + [aux_sym__statement_seq] = STATE(13), + [sym__statement] = STATE(13), + [sym__expression] = STATE(134), + [sym_binary_expression] = STATE(134), + [sym__expression_unit] = STATE(134), + [sym_record] = STATE(93), + [sym_todo] = STATE(134), + [sym_panic] = STATE(134), + [sym_echo] = STATE(134), + [sym_tuple] = STATE(92), + [sym_list] = STATE(134), + [sym__expression_bit_string] = STATE(134), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_let_assert] = STATE(13), + [sym_assert] = STATE(13), + [sym_let] = STATE(13), + [sym_use] = STATE(13), + [sym_boolean_negation] = STATE(134), + [sym_integer_negation] = STATE(134), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_type_definition] = STATE(4), + [sym_type_alias] = STATE(4), + [sym_string] = STATE(134), + [sym_integer] = STATE(134), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(4), [ts_builtin_sym_end] = ACTIONS(7), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), [anon_sym_if] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_const] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_LT_LT] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_external] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_LT_LT] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), [anon_sym_fn] = ACTIONS(29), - [anon_sym_try] = ACTIONS(31), + [anon_sym_external] = ACTIONS(31), [anon_sym_todo] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_let] = ACTIONS(37), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), - [sym_visibility_modifier] = ACTIONS(43), - [sym_opacity_modifier] = ACTIONS(45), - [anon_sym_DQUOTE] = ACTIONS(47), - [sym_float] = ACTIONS(49), - [sym__hex] = ACTIONS(51), - [sym__decimal] = ACTIONS(53), - [sym__octal] = ACTIONS(51), - [sym__binary] = ACTIONS(51), - [sym__name] = ACTIONS(55), - [sym__upname] = ACTIONS(57), + [anon_sym_panic] = ACTIONS(35), + [anon_sym_echo] = ACTIONS(37), + [anon_sym_case] = ACTIONS(39), + [anon_sym_let] = ACTIONS(41), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_use] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [sym_visibility_modifier] = ACTIONS(49), + [sym_opacity_modifier] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_float] = ACTIONS(55), + [sym__hex] = ACTIONS(57), + [sym__decimal] = ACTIONS(59), + [sym__octal] = ACTIONS(57), + [sym__binary] = ACTIONS(57), + [sym__name] = ACTIONS(61), + [sym__upname] = ACTIONS(63), }, [2] = { - [sym__statement] = STATE(3), - [sym_target_group] = STATE(3), - [sym_import] = STATE(3), - [sym_constant] = STATE(3), - [sym_external_type] = STATE(3), - [sym_external_function] = STATE(3), - [sym_function] = STATE(3), - [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(455), - [sym__expression] = STATE(106), - [sym_binary_expression] = STATE(106), - [sym__expression_unit] = STATE(106), - [sym_record] = STATE(39), - [sym_todo] = STATE(106), - [sym_tuple] = STATE(40), - [sym_list] = STATE(106), - [sym__expression_bit_string] = STATE(106), - [sym_anonymous_function] = STATE(29), - [sym_expression_group] = STATE(8), - [sym_case] = STATE(8), - [sym_let] = STATE(106), - [sym_assert] = STATE(106), - [sym_negation] = STATE(106), - [sym_record_update] = STATE(39), - [sym__maybe_tuple_expression] = STATE(1178), - [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1232), - [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1051), - [sym_function_call] = STATE(8), - [sym_type_definition] = STATE(3), - [sym_type_alias] = STATE(3), - [sym_string] = STATE(106), - [sym_integer] = STATE(106), - [sym_identifier] = STATE(25), - [sym_constructor_name] = STATE(6), - [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(59), + [sym__expression] = STATE(97), + [sym_binary_expression] = STATE(97), + [sym__expression_unit] = STATE(97), + [sym_record] = STATE(69), + [sym_todo] = STATE(97), + [sym_panic] = STATE(97), + [sym_echo] = STATE(97), + [sym_tuple] = STATE(76), + [sym_list] = STATE(97), + [sym__expression_bit_string] = STATE(97), + [sym_anonymous_function] = STATE(78), + [sym_block] = STATE(26), + [sym_case] = STATE(26), + [sym_boolean_negation] = STATE(97), + [sym_integer_negation] = STATE(97), + [sym_record_update] = STATE(69), + [sym__maybe_tuple_expression] = STATE(1876), + [sym_tuple_access] = STATE(26), + [sym__maybe_record_expression] = STATE(1809), + [sym_field_access] = STATE(26), + [sym__maybe_function_expression] = STATE(1608), + [sym_function_call] = STATE(26), + [sym_string] = STATE(97), + [sym_integer] = STATE(97), + [sym_identifier] = STATE(27), + [sym_constructor_name] = STATE(14), + [sym_remote_constructor_name] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_import] = ACTIONS(67), + [anon_sym_as] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_type] = ACTIONS(67), + [anon_sym_const] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_external] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [sym_visibility_modifier] = ACTIONS(67), + [sym_opacity_modifier] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [3] = { + [sym__expression] = STATE(133), + [sym_binary_expression] = STATE(133), + [sym__expression_unit] = STATE(133), + [sym_record] = STATE(93), + [sym_todo] = STATE(133), + [sym_panic] = STATE(133), + [sym_echo] = STATE(133), + [sym_tuple] = STATE(92), + [sym_list] = STATE(133), + [sym__expression_bit_string] = STATE(133), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_boolean_negation] = STATE(133), + [sym_integer_negation] = STATE(133), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_string] = STATE(133), + [sym_integer] = STATE(133), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [ts_builtin_sym_end] = ACTIONS(65), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_AT] = ACTIONS(65), + [anon_sym_import] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_type] = ACTIONS(67), + [anon_sym_const] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_external] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [sym_visibility_modifier] = ACTIONS(67), + [sym_opacity_modifier] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [4] = { + [sym__module_statement] = STATE(6), + [sym_target_group] = STATE(6), + [sym_attribute] = STATE(6), + [sym_import] = STATE(6), + [sym_constant] = STATE(6), + [sym_external_type] = STATE(6), + [sym_external_function] = STATE(6), + [sym_function] = STATE(6), + [aux_sym__statement_seq] = STATE(13), + [sym__statement] = STATE(13), + [sym__expression] = STATE(134), + [sym_binary_expression] = STATE(134), + [sym__expression_unit] = STATE(134), + [sym_record] = STATE(93), + [sym_todo] = STATE(134), + [sym_panic] = STATE(134), + [sym_echo] = STATE(134), + [sym_tuple] = STATE(92), + [sym_list] = STATE(134), + [sym__expression_bit_string] = STATE(134), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_let_assert] = STATE(13), + [sym_assert] = STATE(13), + [sym_let] = STATE(13), + [sym_use] = STATE(13), + [sym_boolean_negation] = STATE(134), + [sym_integer_negation] = STATE(134), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_type_definition] = STATE(6), + [sym_type_alias] = STATE(6), + [sym_string] = STATE(134), + [sym_integer] = STATE(134), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(69), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), [anon_sym_if] = ACTIONS(9), [anon_sym_LBRACE] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_const] = ACTIONS(15), - [anon_sym_POUND] = ACTIONS(17), - [anon_sym_LBRACK] = ACTIONS(19), - [anon_sym_LT_LT] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_external] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), + [anon_sym_AT] = ACTIONS(13), + [anon_sym_import] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_LT_LT] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), [anon_sym_fn] = ACTIONS(29), - [anon_sym_try] = ACTIONS(31), + [anon_sym_external] = ACTIONS(31), [anon_sym_todo] = ACTIONS(33), - [anon_sym_case] = ACTIONS(35), - [anon_sym_let] = ACTIONS(37), - [anon_sym_assert] = ACTIONS(39), - [anon_sym_BANG] = ACTIONS(41), - [sym_visibility_modifier] = ACTIONS(43), - [sym_opacity_modifier] = ACTIONS(45), - [anon_sym_DQUOTE] = ACTIONS(47), - [sym_float] = ACTIONS(49), - [sym__hex] = ACTIONS(51), - [sym__decimal] = ACTIONS(53), - [sym__octal] = ACTIONS(51), - [sym__binary] = ACTIONS(51), - [sym__name] = ACTIONS(55), - [sym__upname] = ACTIONS(57), + [anon_sym_panic] = ACTIONS(35), + [anon_sym_echo] = ACTIONS(37), + [anon_sym_case] = ACTIONS(39), + [anon_sym_let] = ACTIONS(41), + [anon_sym_assert] = ACTIONS(43), + [anon_sym_use] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [sym_visibility_modifier] = ACTIONS(49), + [sym_opacity_modifier] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_float] = ACTIONS(55), + [sym__hex] = ACTIONS(57), + [sym__decimal] = ACTIONS(59), + [sym__octal] = ACTIONS(57), + [sym__binary] = ACTIONS(57), + [sym__name] = ACTIONS(61), + [sym__upname] = ACTIONS(63), }, - [3] = { - [sym__statement] = STATE(3), - [sym_target_group] = STATE(3), - [sym_import] = STATE(3), - [sym_constant] = STATE(3), - [sym_external_type] = STATE(3), - [sym_external_function] = STATE(3), - [sym_function] = STATE(3), - [aux_sym__expression_seq] = STATE(5), - [sym_try] = STATE(455), - [sym__expression] = STATE(106), - [sym_binary_expression] = STATE(106), - [sym__expression_unit] = STATE(106), - [sym_record] = STATE(39), - [sym_todo] = STATE(106), - [sym_tuple] = STATE(40), - [sym_list] = STATE(106), - [sym__expression_bit_string] = STATE(106), - [sym_anonymous_function] = STATE(29), - [sym_expression_group] = STATE(8), - [sym_case] = STATE(8), - [sym_let] = STATE(106), - [sym_assert] = STATE(106), - [sym_negation] = STATE(106), - [sym_record_update] = STATE(39), - [sym__maybe_tuple_expression] = STATE(1178), - [sym_tuple_access] = STATE(8), - [sym__maybe_record_expression] = STATE(1232), - [sym_field_access] = STATE(8), - [sym__maybe_function_expression] = STATE(1051), - [sym_function_call] = STATE(8), - [sym_type_definition] = STATE(3), - [sym_type_alias] = STATE(3), - [sym_string] = STATE(106), - [sym_integer] = STATE(106), - [sym_identifier] = STATE(25), - [sym_constructor_name] = STATE(6), - [sym_remote_constructor_name] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(61), + [5] = { + [sym__expression] = STATE(810), + [sym_binary_expression] = STATE(810), + [sym__expression_unit] = STATE(810), + [sym_record] = STATE(679), + [sym_todo] = STATE(810), + [sym_panic] = STATE(810), + [sym_echo] = STATE(810), + [sym_tuple] = STATE(681), + [sym_list] = STATE(810), + [sym__expression_bit_string] = STATE(810), + [sym_anonymous_function] = STATE(685), + [sym_block] = STATE(644), + [sym_case] = STATE(644), + [sym_boolean_negation] = STATE(810), + [sym_integer_negation] = STATE(810), + [sym_record_update] = STATE(679), + [sym__maybe_tuple_expression] = STATE(1821), + [sym_tuple_access] = STATE(644), + [sym__maybe_record_expression] = STATE(1796), + [sym_field_access] = STATE(644), + [sym__maybe_function_expression] = STATE(1682), + [sym_function_call] = STATE(644), + [sym_string] = STATE(810), + [sym_integer] = STATE(810), + [sym_identifier] = STATE(649), + [sym_constructor_name] = STATE(642), + [sym_remote_constructor_name] = STATE(642), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_RBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(77), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(81), + [anon_sym_panic] = ACTIONS(83), + [anon_sym_echo] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_case] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_float] = ACTIONS(93), + [sym__hex] = ACTIONS(95), + [sym__decimal] = ACTIONS(97), + [sym__octal] = ACTIONS(95), + [sym__binary] = ACTIONS(95), + [sym__name] = ACTIONS(99), + [sym__upname] = ACTIONS(101), + }, + [6] = { + [sym__module_statement] = STATE(6), + [sym_target_group] = STATE(6), + [sym_attribute] = STATE(6), + [sym_import] = STATE(6), + [sym_constant] = STATE(6), + [sym_external_type] = STATE(6), + [sym_external_function] = STATE(6), + [sym_function] = STATE(6), + [aux_sym__statement_seq] = STATE(13), + [sym__statement] = STATE(13), + [sym__expression] = STATE(134), + [sym_binary_expression] = STATE(134), + [sym__expression_unit] = STATE(134), + [sym_record] = STATE(93), + [sym_todo] = STATE(134), + [sym_panic] = STATE(134), + [sym_echo] = STATE(134), + [sym_tuple] = STATE(92), + [sym_list] = STATE(134), + [sym__expression_bit_string] = STATE(134), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_let_assert] = STATE(13), + [sym_assert] = STATE(13), + [sym_let] = STATE(13), + [sym_use] = STATE(13), + [sym_boolean_negation] = STATE(134), + [sym_integer_negation] = STATE(134), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_type_definition] = STATE(6), + [sym_type_alias] = STATE(6), + [sym_string] = STATE(134), + [sym_integer] = STATE(134), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(6), + [ts_builtin_sym_end] = ACTIONS(103), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(108), + [anon_sym_AT] = ACTIONS(111), + [anon_sym_import] = ACTIONS(114), + [anon_sym_type] = ACTIONS(117), + [anon_sym_const] = ACTIONS(120), + [anon_sym_POUND] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_LT_LT] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(132), + [anon_sym_fn] = ACTIONS(135), + [anon_sym_external] = ACTIONS(138), + [anon_sym_todo] = ACTIONS(141), + [anon_sym_panic] = ACTIONS(144), + [anon_sym_echo] = ACTIONS(147), + [anon_sym_case] = ACTIONS(150), + [anon_sym_let] = ACTIONS(153), + [anon_sym_assert] = ACTIONS(156), + [anon_sym_use] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(162), + [sym_visibility_modifier] = ACTIONS(165), + [sym_opacity_modifier] = ACTIONS(168), + [anon_sym_DQUOTE] = ACTIONS(171), + [sym_float] = ACTIONS(174), + [sym__hex] = ACTIONS(177), + [sym__decimal] = ACTIONS(180), + [sym__octal] = ACTIONS(177), + [sym__binary] = ACTIONS(177), + [sym__name] = ACTIONS(183), + [sym__upname] = ACTIONS(186), + }, + [7] = { + [sym__expression] = STATE(463), + [sym_binary_expression] = STATE(463), + [sym__expression_unit] = STATE(463), + [sym_record] = STATE(319), + [sym_todo] = STATE(463), + [sym_panic] = STATE(463), + [sym_echo] = STATE(463), + [sym_tuple] = STATE(312), + [sym_list] = STATE(463), + [sym__expression_bit_string] = STATE(463), + [sym_anonymous_function] = STATE(311), + [sym_block] = STATE(248), + [sym_case] = STATE(248), + [sym_boolean_negation] = STATE(463), + [sym_integer_negation] = STATE(463), + [sym_record_update] = STATE(319), + [sym__maybe_tuple_expression] = STATE(1825), + [sym_tuple_access] = STATE(248), + [sym__maybe_record_expression] = STATE(1820), + [sym_field_access] = STATE(248), + [sym__maybe_function_expression] = STATE(1638), + [sym_function_call] = STATE(248), + [sym_string] = STATE(463), + [sym_integer] = STATE(463), + [sym_identifier] = STATE(249), + [sym_constructor_name] = STATE(222), + [sym_remote_constructor_name] = STATE(222), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_as] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [8] = { + [sym__expression] = STATE(522), + [sym_binary_expression] = STATE(522), + [sym__expression_unit] = STATE(522), + [sym_record] = STATE(214), + [sym_todo] = STATE(522), + [sym_panic] = STATE(522), + [sym_echo] = STATE(522), + [sym_tuple] = STATE(218), + [sym_list] = STATE(522), + [sym__expression_bit_string] = STATE(522), + [sym_anonymous_function] = STATE(220), + [sym_block] = STATE(202), + [sym_case] = STATE(202), + [sym_boolean_negation] = STATE(522), + [sym_integer_negation] = STATE(522), + [sym_record_update] = STATE(214), + [sym__maybe_tuple_expression] = STATE(1826), + [sym_tuple_access] = STATE(202), + [sym__maybe_record_expression] = STATE(1762), + [sym_field_access] = STATE(202), + [sym__maybe_function_expression] = STATE(1653), + [sym_function_call] = STATE(202), + [sym_string] = STATE(522), + [sym_integer] = STATE(522), + [sym_identifier] = STATE(211), + [sym_constructor_name] = STATE(187), + [sym_remote_constructor_name] = STATE(187), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(67), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(67), + [anon_sym_panic] = ACTIONS(67), + [anon_sym_echo] = ACTIONS(67), + [anon_sym_case] = ACTIONS(67), + [anon_sym_let] = ACTIONS(67), + [anon_sym_assert] = ACTIONS(67), + [anon_sym_use] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(67), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [9] = { + [sym__expression] = STATE(620), + [sym_binary_expression] = STATE(620), + [sym__expression_unit] = STATE(620), + [sym_record] = STATE(584), + [sym_todo] = STATE(620), + [sym_panic] = STATE(620), + [sym_echo] = STATE(620), + [sym_tuple] = STATE(585), + [sym_list] = STATE(620), + [sym__expression_bit_string] = STATE(620), + [sym_anonymous_function] = STATE(588), + [sym_block] = STATE(562), + [sym_case] = STATE(562), + [sym_boolean_negation] = STATE(620), + [sym_integer_negation] = STATE(620), + [sym_record_update] = STATE(584), + [sym__maybe_tuple_expression] = STATE(1782), + [sym_tuple_access] = STATE(562), + [sym__maybe_record_expression] = STATE(1831), + [sym_field_access] = STATE(562), + [sym__maybe_function_expression] = STATE(1678), + [sym_function_call] = STATE(562), + [sym_string] = STATE(620), + [sym_integer] = STATE(620), + [sym_identifier] = STATE(563), + [sym_constructor_name] = STATE(555), + [sym_remote_constructor_name] = STATE(555), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(193), + [anon_sym_panic] = ACTIONS(195), + [anon_sym_echo] = ACTIONS(197), + [anon_sym_case] = ACTIONS(199), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym__hex] = ACTIONS(65), + [sym__decimal] = ACTIONS(67), + [sym__octal] = ACTIONS(65), + [sym__binary] = ACTIONS(65), + [sym__discard_name] = ACTIONS(67), + [sym__name] = ACTIONS(67), + [sym__upname] = ACTIONS(65), + }, + [10] = { + [sym__expression] = STATE(961), + [sym_binary_expression] = STATE(961), + [sym__expression_unit] = STATE(961), + [sym_record] = STATE(931), + [sym_todo] = STATE(961), + [sym_panic] = STATE(961), + [sym_echo] = STATE(961), + [sym_tuple] = STATE(933), + [sym_list] = STATE(961), + [sym__expression_bit_string] = STATE(961), + [sym_anonymous_function] = STATE(935), + [sym_block] = STATE(873), + [sym_case] = STATE(873), + [sym_boolean_negation] = STATE(961), + [sym_integer_negation] = STATE(961), + [sym_record_update] = STATE(931), + [sym__maybe_tuple_expression] = STATE(1760), + [sym_tuple_access] = STATE(873), + [sym__maybe_record_expression] = STATE(1842), + [sym_field_access] = STATE(873), + [sym__maybe_function_expression] = STATE(1718), + [sym_function_call] = STATE(873), + [sym_string] = STATE(961), + [sym_integer] = STATE(961), + [sym_identifier] = STATE(862), + [sym_constructor_name] = STATE(856), + [sym_remote_constructor_name] = STATE(856), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(205), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(211), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(213), + [anon_sym_panic] = ACTIONS(215), + [anon_sym_echo] = ACTIONS(217), + [anon_sym_case] = ACTIONS(219), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_DQUOTE] = ACTIONS(223), + [sym_float] = ACTIONS(225), + [sym__hex] = ACTIONS(227), + [sym__decimal] = ACTIONS(229), + [sym__octal] = ACTIONS(227), + [sym__binary] = ACTIONS(227), + [sym__name] = ACTIONS(231), + [sym__upname] = ACTIONS(233), + }, + [11] = { + [sym__expression] = STATE(913), + [sym_binary_expression] = STATE(913), + [sym__expression_unit] = STATE(913), + [sym_record] = STATE(679), + [sym_todo] = STATE(913), + [sym_panic] = STATE(913), + [sym_echo] = STATE(913), + [sym_tuple] = STATE(681), + [sym_list] = STATE(913), + [sym__expression_bit_string] = STATE(913), + [sym_anonymous_function] = STATE(685), + [sym_block] = STATE(644), + [sym_case] = STATE(644), + [sym_boolean_negation] = STATE(913), + [sym_integer_negation] = STATE(913), + [sym_record_update] = STATE(679), + [sym__maybe_tuple_expression] = STATE(1821), + [sym_tuple_access] = STATE(644), + [sym__maybe_record_expression] = STATE(1796), + [sym_field_access] = STATE(644), + [sym__maybe_function_expression] = STATE(1682), + [sym_function_call] = STATE(644), + [sym_string] = STATE(913), + [sym_integer] = STATE(913), + [sym_identifier] = STATE(649), + [sym_constructor_name] = STATE(642), + [sym_remote_constructor_name] = STATE(642), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_COMMA] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_POUND] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(75), + [anon_sym_LT_LT] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_fn] = ACTIONS(79), + [anon_sym_PIPE_PIPE] = ACTIONS(65), + [anon_sym_AMP_AMP] = ACTIONS(65), + [anon_sym_EQ_EQ] = ACTIONS(65), + [anon_sym_BANG_EQ] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(67), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_DOT] = ACTIONS(65), + [anon_sym_LT_EQ_DOT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(67), + [anon_sym_GT_EQ] = ACTIONS(67), + [anon_sym_GT_DOT] = ACTIONS(65), + [anon_sym_GT_EQ_DOT] = ACTIONS(65), + [anon_sym_PIPE_GT] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_PLUS_DOT] = ACTIONS(65), + [anon_sym_DASH_DOT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [anon_sym_STAR_DOT] = ACTIONS(65), + [anon_sym_SLASH_DOT] = ACTIONS(65), + [anon_sym_PERCENT] = ACTIONS(65), + [anon_sym_LT_GT] = ACTIONS(65), + [anon_sym_todo] = ACTIONS(235), + [anon_sym_panic] = ACTIONS(237), + [anon_sym_echo] = ACTIONS(239), + [anon_sym_case] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_float] = ACTIONS(243), + [sym__hex] = ACTIONS(95), + [sym__decimal] = ACTIONS(97), + [sym__octal] = ACTIONS(95), + [sym__binary] = ACTIONS(95), + [sym__name] = ACTIONS(99), + [sym__upname] = ACTIONS(101), + }, + [12] = { + [aux_sym__statement_seq] = STATE(12), + [sym__statement] = STATE(12), + [sym__expression] = STATE(134), + [sym_binary_expression] = STATE(134), + [sym__expression_unit] = STATE(134), + [sym_record] = STATE(93), + [sym_todo] = STATE(134), + [sym_panic] = STATE(134), + [sym_echo] = STATE(134), + [sym_tuple] = STATE(92), + [sym_list] = STATE(134), + [sym__expression_bit_string] = STATE(134), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_let_assert] = STATE(12), + [sym_assert] = STATE(12), + [sym_let] = STATE(12), + [sym_use] = STATE(12), + [sym_boolean_negation] = STATE(134), + [sym_integer_negation] = STATE(134), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_string] = STATE(134), + [sym_integer] = STATE(134), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [ts_builtin_sym_end] = ACTIONS(245), + [sym_module_comment] = ACTIONS(3), + [sym_statement_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(5), + [anon_sym_if] = ACTIONS(247), + [anon_sym_LBRACE] = ACTIONS(249), + [anon_sym_AT] = ACTIONS(245), + [anon_sym_import] = ACTIONS(247), + [anon_sym_type] = ACTIONS(247), + [anon_sym_const] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_fn] = ACTIONS(264), + [anon_sym_external] = ACTIONS(247), + [anon_sym_todo] = ACTIONS(267), + [anon_sym_panic] = ACTIONS(270), + [anon_sym_echo] = ACTIONS(273), + [anon_sym_case] = ACTIONS(276), + [anon_sym_let] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(282), + [anon_sym_use] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(288), + [sym_visibility_modifier] = ACTIONS(247), + [sym_opacity_modifier] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(291), + [sym_float] = ACTIONS(294), + [sym__hex] = ACTIONS(297), + [sym__decimal] = ACTIONS(300), + [sym__octal] = ACTIONS(297), + [sym__binary] = ACTIONS(297), + [sym__name] = ACTIONS(303), + [sym__upname] = ACTIONS(306), + }, + [13] = { + [aux_sym__statement_seq] = STATE(12), + [sym__statement] = STATE(12), + [sym__expression] = STATE(134), + [sym_binary_expression] = STATE(134), + [sym__expression_unit] = STATE(134), + [sym_record] = STATE(93), + [sym_todo] = STATE(134), + [sym_panic] = STATE(134), + [sym_echo] = STATE(134), + [sym_tuple] = STATE(92), + [sym_list] = STATE(134), + [sym__expression_bit_string] = STATE(134), + [sym_anonymous_function] = STATE(91), + [sym_block] = STATE(81), + [sym_case] = STATE(81), + [sym_let_assert] = STATE(12), + [sym_assert] = STATE(12), + [sym_let] = STATE(12), + [sym_use] = STATE(12), + [sym_boolean_negation] = STATE(134), + [sym_integer_negation] = STATE(134), + [sym_record_update] = STATE(93), + [sym__maybe_tuple_expression] = STATE(1863), + [sym_tuple_access] = STATE(81), + [sym__maybe_record_expression] = STATE(1862), + [sym_field_access] = STATE(81), + [sym__maybe_function_expression] = STATE(1652), + [sym_function_call] = STATE(81), + [sym_string] = STATE(134), + [sym_integer] = STATE(134), + [sym_identifier] = STATE(74), + [sym_constructor_name] = STATE(39), + [sym_remote_constructor_name] = STATE(39), + [ts_builtin_sym_end] = ACTIONS(309), [sym_module_comment] = ACTIONS(3), [sym_statement_comment] = ACTIONS(5), [sym_comment] = ACTIONS(5), - [anon_sym_if] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(66), - [anon_sym_import] = ACTIONS(69), - [anon_sym_const] = ACTIONS(72), - [anon_sym_POUND] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(78), - [anon_sym_LT_LT] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(84), - [anon_sym_external] = ACTIONS(87), - [anon_sym_type] = ACTIONS(90), - [anon_sym_fn] = ACTIONS(93), - [anon_sym_try] = ACTIONS(96), - [anon_sym_todo] = ACTIONS(99), - [anon_sym_case] = ACTIONS(102), - [anon_sym_let] = ACTIONS(105), - [anon_sym_assert] = ACTIONS(108), - [anon_sym_BANG] = ACTIONS(111), - [sym_visibility_modifier] = ACTIONS(114), - [sym_opacity_modifier] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(120), - [sym_float] = ACTIONS(123), - [sym__hex] = ACTIONS(126), - [sym__decimal] = ACTIONS(129), - [sym__octal] = ACTIONS(126), - [sym__binary] = ACTIONS(126), - [sym__name] = ACTIONS(132), - [sym__upname] = ACTIONS(135), + [anon_sym_if] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_AT] = ACTIONS(309), + [anon_sym_import] = ACTIONS(311), + [anon_sym_type] = ACTIONS(311), + [anon_sym_const] = ACTIONS(311), + [anon_sym_POUND] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_DASH] = ACTIONS(325), + [anon_sym_fn] = ACTIONS(328), + [anon_sym_external] = ACTIONS(311), + [anon_sym_todo] = ACTIONS(331), + [anon_sym_panic] = ACTIONS(334), + [anon_sym_echo] = ACTIONS(337), + [anon_sym_case] = ACTIONS(340), + [anon_sym_let] = ACTIONS(343), + [anon_sym_assert] = ACTIONS(346), + [anon_sym_use] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(352), + [sym_visibility_modifier] = ACTIONS(311), + [sym_opacity_modifier] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(355), + [sym_float] = ACTIONS(358), + [sym__hex] = ACTIONS(361), + [sym__decimal] = ACTIONS(364), + [sym__octal] = ACTIONS(361), + [sym__binary] = ACTIONS(361), + [sym__name] = ACTIONS(367), + [sym__upname] = ACTIONS(370), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 34, + [0] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(138), 1, - ts_builtin_sym_end, - ACTIONS(142), 1, - anon_sym_LBRACE, - ACTIONS(145), 1, - anon_sym_POUND, - ACTIONS(148), 1, - anon_sym_LBRACK, - ACTIONS(151), 1, - anon_sym_LT_LT, - ACTIONS(154), 1, + ACTIONS(377), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(157), 1, anon_sym_fn, - ACTIONS(160), 1, - anon_sym_try, - ACTIONS(163), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(166), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(169), 1, anon_sym_let, - ACTIONS(172), 1, anon_sym_assert, - ACTIONS(175), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(178), 1, - anon_sym_DQUOTE, - ACTIONS(181), 1, - sym_float, - ACTIONS(187), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(190), 1, sym__name, - ACTIONS(193), 1, + ACTIONS(373), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - STATE(4), 1, - aux_sym__expression_seq, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(455), 1, - sym_try, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, + [73] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(184), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - ACTIONS(140), 7, + ACTIONS(381), 27, anon_sym_if, anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, anon_sym_const, + anon_sym_DASH, + anon_sym_fn, anon_sym_external, - anon_sym_type, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, - STATE(106), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [128] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(196), 1, + sym__decimal, + sym__name, + ACTIONS(379), 29, ts_builtin_sym_end, - ACTIONS(200), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(206), 1, anon_sym_LBRACK, - ACTIONS(209), 1, anon_sym_LT_LT, - ACTIONS(212), 1, - anon_sym_DASH, - ACTIONS(215), 1, - anon_sym_fn, - ACTIONS(218), 1, - anon_sym_try, - ACTIONS(221), 1, - anon_sym_todo, - ACTIONS(224), 1, - anon_sym_case, - ACTIONS(227), 1, - anon_sym_let, - ACTIONS(230), 1, - anon_sym_assert, - ACTIONS(233), 1, - anon_sym_BANG, - ACTIONS(236), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(239), 1, sym_float, - ACTIONS(245), 1, - sym__decimal, - ACTIONS(248), 1, - sym__name, - ACTIONS(251), 1, - sym__upname, - STATE(4), 1, - aux_sym__expression_seq, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(455), 1, - sym_try, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(242), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - ACTIONS(198), 7, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - sym_visibility_modifier, - sym_opacity_modifier, - STATE(106), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [256] = 6, + sym__upname, + [141] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(258), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 24, + ACTIONS(385), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -6633,17 +8611,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(254), 26, + ACTIONS(383), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -6662,28 +8645,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [324] = 4, + [209] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 24, + ACTIONS(389), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -6691,20 +8675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(260), 27, + ACTIONS(387), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -6721,32 +8709,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [387] = 6, + [277] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(393), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -6754,17 +8739,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(391), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -6782,28 +8773,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [454] = 4, + [345] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 24, + ACTIONS(397), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -6811,20 +8803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(273), 27, + ACTIONS(395), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -6841,118 +8837,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [517] = 35, + [413] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(281), 1, - anon_sym_RPAREN, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(401), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(293), 1, - anon_sym_DOT_DOT, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(959), 1, - sym_argument, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(399), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [642] = 4, + sym__upname, + [481] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(319), 24, + ACTIONS(405), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -6960,20 +8931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(317), 27, + ACTIONS(403), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -6990,28 +8965,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [705] = 4, + [549] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 24, + ACTIONS(409), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7019,20 +8995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(321), 27, + ACTIONS(407), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7049,115 +9029,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [768] = 35, + [617] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(413), 1, + anon_sym_RBRACE, + ACTIONS(415), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(419), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(421), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(423), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(425), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(443), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(325), 1, - anon_sym_RPAREN, - ACTIONS(327), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(984), 1, - sym_argument, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [893] = 4, + [745] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(331), 19, - anon_sym_DOT, + ACTIONS(455), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, anon_sym_SLASH, - anon_sym_EQ, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7165,24 +9153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(329), 32, + ACTIONS(453), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, + anon_sym_AT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_POUND, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -7197,140 +9187,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [956] = 35, + [813] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(415), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(419), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(421), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(423), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(425), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(443), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(333), 1, - anon_sym_RPAREN, - ACTIONS(335), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + ACTIONS(457), 1, + anon_sym_RBRACE, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(952), 1, - sym_argument, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(31), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1081] = 4, + [941] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(337), 27, + ACTIONS(459), 27, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7347,28 +9319,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1144] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(343), 24, + ACTIONS(461), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7376,20 +9343,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(341), 27, + [1013] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(468), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(459), 27, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7406,28 +9385,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1207] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(347), 24, + ACTIONS(461), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7435,58 +9409,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(345), 27, - ts_builtin_sym_end, + [1085] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(415), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [1270] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(472), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(40), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1213] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 24, + ACTIONS(476), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7494,20 +9537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(349), 27, + ACTIONS(474), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7524,28 +9571,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [1281] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(443), 1, sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(478), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(46), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1409] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, sym__upname, - [1333] = 4, + ACTIONS(480), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1537] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(355), 24, + ACTIONS(484), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7553,20 +9789,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(353), 27, + ACTIONS(482), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7583,87 +9823,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1396] = 4, + [1605] = 34, ACTIONS(3), 1, sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(486), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(359), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(23), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1733] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(423), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(425), 1, anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, + ACTIONS(433), 1, anon_sym_let, + ACTIONS(435), 1, anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, sym__decimal, + ACTIONS(449), 1, sym__name, - ACTIONS(357), 27, - ts_builtin_sym_end, + ACTIONS(451), 1, + sym__upname, + ACTIONS(488), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1861] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(415), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(443), 1, sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(490), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(34), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [1989] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, sym__upname, - [1459] = 4, + ACTIONS(492), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [2117] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 24, + ACTIONS(496), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7671,20 +10229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(361), 27, + ACTIONS(494), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7701,28 +10263,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1522] = 4, + [2185] = 34, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(498), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(36), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [2313] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(500), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(331), 24, + ACTIONS(375), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7730,20 +10390,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(329), 27, + ACTIONS(373), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7760,28 +10423,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1585] = 4, + [2385] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(367), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(433), 1, + anon_sym_let, + ACTIONS(435), 1, + anon_sym_assert, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(443), 1, + sym_float, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(502), 1, + anon_sym_RBRACE, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [2513] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7789,20 +10547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(365), 27, + ACTIONS(504), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7819,32 +10581,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1648] = 6, + [2581] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(369), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(510), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7852,17 +10611,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(508), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -7880,28 +10645,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1715] = 4, + [2649] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 24, + ACTIONS(514), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -7909,20 +10675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(373), 27, + ACTIONS(512), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -7939,412 +10709,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [1778] = 35, + [2717] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(415), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(419), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(421), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(423), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(425), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(443), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(377), 1, - anon_sym_RPAREN, - ACTIONS(379), 1, - anon_sym_DOT_DOT, - STATE(375), 1, + ACTIONS(516), 1, + anon_sym_RBRACE, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(1031), 1, - sym_argument, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(45), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [1903] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(383), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(381), 27, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [1966] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(266), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - ACTIONS(264), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [2030] = 34, + [2845] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(415), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(419), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(421), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(423), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(425), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(443), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(385), 1, - anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(518), 1, + anon_sym_RBRACE, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2152] = 34, + [2973] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(415), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(417), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(419), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(421), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(423), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(425), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(433), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(435), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(437), 1, + anon_sym_use, + ACTIONS(439), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(443), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(387), 1, - anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(520), 1, + anon_sym_RBRACE, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2274] = 4, + [3101] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 24, + ACTIONS(524), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8352,17 +11021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(389), 26, + ACTIONS(522), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -8381,28 +11055,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2336] = 4, + [3169] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 24, + ACTIONS(528), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8410,17 +11085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(393), 26, + ACTIONS(526), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -8439,292 +11119,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2398] = 34, + [3237] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(245), 1, + anon_sym_RBRACE, + ACTIONS(530), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(533), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(536), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(539), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(542), 1, anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(545), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(548), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(551), 1, + anon_sym_panic, + ACTIONS(554), 1, + anon_sym_echo, + ACTIONS(557), 1, anon_sym_case, - ACTIONS(297), 1, + ACTIONS(560), 1, anon_sym_let, - ACTIONS(299), 1, + ACTIONS(563), 1, anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(566), 1, + anon_sym_use, + ACTIONS(569), 1, anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(572), 1, anon_sym_DQUOTE, - ACTIONS(305), 1, + ACTIONS(575), 1, sym_float, - ACTIONS(309), 1, + ACTIONS(581), 1, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, + ACTIONS(584), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(587), 1, sym__upname, - ACTIONS(377), 1, - anon_sym_RPAREN, - STATE(375), 1, + STATE(211), 1, sym_identifier, - STATE(380), 1, + STATE(218), 1, sym_tuple, - STATE(387), 1, + STATE(220), 1, sym_anonymous_function, - STATE(1031), 1, - sym_argument, - STATE(1116), 1, + STATE(1653), 1, sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1762), 1, sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(187), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(214), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(578), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(202), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(576), 11, + STATE(49), 6, + aux_sym__statement_seq, + sym__statement, + sym_let_assert, + sym_assert, + sym_let, + sym_use, + STATE(515), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [2520] = 34, + [3365] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(592), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(397), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(590), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [2642] = 34, + sym__upname, + [3432] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(528), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(399), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(526), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [2764] = 4, + sym__upname, + [3499] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(403), 24, + ACTIONS(496), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8732,17 +11368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(401), 26, + ACTIONS(494), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -8761,28 +11402,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2826] = 4, + [3566] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 24, + ACTIONS(510), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8790,17 +11431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(405), 26, + ACTIONS(508), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -8819,30 +11465,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2888] = 5, + [3633] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(409), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(514), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8850,17 +11494,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(512), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8878,30 +11528,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [2952] = 5, + [3700] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 24, + ACTIONS(596), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -8909,17 +11558,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 25, + ACTIONS(594), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -8937,204 +11591,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3016] = 34, + [3767] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(602), 1, + anon_sym_LPAREN, + ACTIONS(604), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(600), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(325), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(984), 1, - sym_argument, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(598), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3138] = 34, + sym__upname, + [3838] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(281), 1, - anon_sym_RPAREN, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(959), 1, - sym_argument, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(504), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3260] = 4, + sym__upname, + [3905] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(415), 24, + ACTIONS(608), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9142,19 +11749,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(413), 26, + ACTIONS(606), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -9171,118 +11782,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3322] = 34, + [3972] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(610), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(598), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(600), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(417), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3444] = 5, + [4041] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(423), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 24, + ACTIONS(614), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9290,17 +11876,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(419), 25, + ACTIONS(612), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -9318,28 +11909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3508] = 4, + [4108] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 24, + ACTIONS(405), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9347,17 +11938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(425), 26, + ACTIONS(403), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -9376,28 +11972,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3570] = 4, + [4175] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(620), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 24, + ACTIONS(616), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(618), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [4244] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(622), 1, + anon_sym_LPAREN, + ACTIONS(624), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(618), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9405,18 +12069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(429), 26, + ACTIONS(616), 27, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -9434,116 +12101,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3632] = 34, + [4315] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(628), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(433), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(626), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3754] = 4, + sym__upname, + [4382] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 24, + ACTIONS(632), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9551,19 +12194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(435), 26, + ACTIONS(630), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -9580,378 +12227,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [3816] = 34, + [4449] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(636), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(333), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(952), 1, - sym_argument, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(634), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [3938] = 34, + sym__upname, + [4516] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(640), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(638), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(439), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4060] = 34, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, - sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(441), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4182] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(305), 1, - sym_float, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(313), 1, - sym__name, - ACTIONS(315), 1, - sym__upname, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1160), 1, - sym_argument, - STATE(1168), 1, - sym_hole, - STATE(1189), 1, - sym_label, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(576), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4301] = 4, + [4583] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 24, + ACTIONS(385), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -9959,17 +12382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(443), 25, + ACTIONS(383), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -9987,200 +12416,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4362] = 33, + [4650] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(642), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(459), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(449), 1, - anon_sym_RBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4481] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + sym__upname, + ACTIONS(461), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(485), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [4600] = 4, + [4719] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 24, + ACTIONS(455), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -10188,17 +12509,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(487), 25, + ACTIONS(453), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10216,28 +12543,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4661] = 4, + [4786] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(493), 24, + ACTIONS(381), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -10245,17 +12572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(491), 25, + ACTIONS(379), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10273,95 +12606,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4722] = 14, + [4853] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(505), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(401), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(501), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(507), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(515), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(495), 11, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(399), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(497), 16, + [4920] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(397), 26, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [4803] = 4, + ACTIONS(395), 29, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [4987] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(644), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(521), 24, + ACTIONS(461), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -10369,17 +12765,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(519), 25, + ACTIONS(459), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10397,28 +12797,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4864] = 4, + [5058] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(525), 24, + ACTIONS(524), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -10426,17 +12826,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(523), 25, + ACTIONS(522), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10454,28 +12860,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4925] = 4, + [5125] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(648), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(529), 24, + ACTIONS(459), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(461), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5194] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -10483,17 +12953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(527), 25, + ACTIONS(474), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10511,378 +12987,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [4986] = 33, + [5261] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(459), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(461), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(531), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [5330] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5105] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(484), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(533), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5224] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(482), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(535), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5343] = 33, + sym__upname, + [5397] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(409), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(537), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5462] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(499), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(501), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(515), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(539), 20, + ACTIONS(407), 29, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -10895,143 +13172,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 20, + [5464] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 26, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [5531] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(138), 1, - anon_sym_RBRACE, - ACTIONS(543), 1, - anon_sym_LBRACE, - ACTIONS(546), 1, - anon_sym_POUND, - ACTIONS(549), 1, - anon_sym_LBRACK, - ACTIONS(552), 1, - anon_sym_LT_LT, - ACTIONS(555), 1, - anon_sym_DASH, - ACTIONS(558), 1, - anon_sym_fn, - ACTIONS(561), 1, - anon_sym_try, - ACTIONS(564), 1, - anon_sym_todo, - ACTIONS(567), 1, - anon_sym_case, - ACTIONS(570), 1, - anon_sym_let, - ACTIONS(573), 1, - anon_sym_assert, - ACTIONS(576), 1, - anon_sym_BANG, - ACTIONS(579), 1, - anon_sym_DQUOTE, - ACTIONS(582), 1, - sym_float, - ACTIONS(588), 1, - sym__decimal, - ACTIONS(591), 1, - sym__name, - ACTIONS(594), 1, - sym__upname, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(585), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5650] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(513), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(499), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(501), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(515), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(539), 19, + ACTIONS(459), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11043,130 +13236,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 20, + [5535] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 26, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [5721] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(387), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(597), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [5840] = 4, + sym__upname, + [5602] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 17, + ACTIONS(393), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11174,25 +13334,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(349), 32, + ACTIONS(391), 29, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_DOT, - anon_sym_COMMA, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -11207,46 +13368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [5901] = 11, + [5669] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(513), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(501), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(515), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(511), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(539), 15, + ACTIONS(650), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11254,131 +13392,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [5976] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(599), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6095] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(603), 24, + ACTIONS(652), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11386,17 +13426,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(601), 25, + [5735] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(654), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11414,93 +13464,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6156] = 12, - ACTIONS(3), 1, + ACTIONS(656), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5801] = 14, + ACTIONS(3), 1, sym_module_comment, - ACTIONS(513), 1, + ACTIONS(666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(668), 1, + anon_sym_AMP_AMP, + ACTIONS(676), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(662), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(501), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(507), 2, + ACTIONS(670), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 2, + ACTIONS(678), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, + ACTIONS(672), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, + ACTIONS(674), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(539), 13, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(658), 12, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 16, + ACTIONS(660), 19, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_as, anon_sym_type, + anon_sym_const, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [6233] = 4, + [5887] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 24, + ACTIONS(682), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(684), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, + anon_sym_fn, anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [5953] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(636), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11508,17 +13655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(605), 25, + ACTIONS(634), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11536,28 +13688,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6294] = 4, + [6019] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(611), 24, + ACTIONS(686), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(688), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11565,17 +13746,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(609), 25, + [6085] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(690), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11593,114 +13784,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6355] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(692), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(613), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6474] = 4, + [6151] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(617), 24, + ACTIONS(461), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11708,17 +13843,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(615), 25, + ACTIONS(459), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11736,94 +13875,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6535] = 13, + [6219] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(505), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, - anon_sym_PIPE_GT, + ACTIONS(648), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(461), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(501), 2, + anon_sym_type, + anon_sym_const, anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(507), 2, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(459), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 2, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(509), 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [6287] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(642), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(459), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(539), 12, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [6355] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(694), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 16, + ACTIONS(696), 27, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_as, + anon_sym_SLASH, anon_sym_type, + anon_sym_const, + anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [6614] = 6, + [6421] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(539), 22, + ACTIONS(698), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11838,51 +14094,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(541), 22, + ACTIONS(700), 27, anon_sym_if, anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [6679] = 4, + [6487] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 24, + ACTIONS(614), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -11890,17 +14154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 25, + ACTIONS(612), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -11918,200 +14187,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [6740] = 33, + [6553] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(668), 1, + anon_sym_AMP_AMP, + ACTIONS(676), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(670), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(672), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(674), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(702), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(623), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6859] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + sym__upname, + ACTIONS(704), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(625), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [6978] = 4, + [6639] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 24, + ACTIONS(596), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12119,17 +14288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(539), 25, + ACTIONS(594), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12147,23 +14321,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7039] = 4, + [6705] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 17, + ACTIONS(706), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(708), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12171,25 +14379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(361), 32, + [6771] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(710), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12204,109 +14417,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7100] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(712), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(627), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [6837] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(714), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7219] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(367), 17, + sym__upname, + ACTIONS(716), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12314,25 +14503,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(365), 32, + [6903] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(718), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -12347,139 +14541,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7280] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(720), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(629), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7399] = 14, + [6969] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(503), 1, + ACTIONS(666), 1, anon_sym_PIPE_PIPE, - ACTIONS(505), 1, + ACTIONS(668), 1, anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(676), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(662), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(501), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(507), 2, + ACTIONS(670), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 2, + ACTIONS(678), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, + ACTIONS(672), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, + ACTIONS(674), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(631), 11, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(722), 12, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12489,121 +14628,71 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(633), 16, + ACTIONS(724), 19, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_as, anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [7480] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(637), 24, - anon_sym_if, - anon_sym_import, - anon_sym_SLASH, anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(635), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [7541] = 14, + [7055] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(503), 1, + ACTIONS(666), 1, anon_sym_PIPE_PIPE, - ACTIONS(505), 1, + ACTIONS(668), 1, anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(676), 1, anon_sym_PIPE_GT, + ACTIONS(730), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(662), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(501), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(507), 2, + ACTIONS(670), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 2, + ACTIONS(678), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, + ACTIONS(672), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, + ACTIONS(674), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(639), 11, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(726), 12, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12613,125 +14702,69 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(641), 16, + ACTIONS(728), 18, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, anon_sym_type, + anon_sym_const, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [7622] = 33, + [7143] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(732), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(643), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7741] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(647), 24, + sym__upname, + ACTIONS(734), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12739,17 +14772,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(645), 25, + [7209] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(676), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(672), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(674), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 16, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12757,56 +14826,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7802] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(651), 24, + ACTIONS(712), 19, anon_sym_if, anon_sym_import, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, + anon_sym_as, anon_sym_type, + anon_sym_const, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(649), 25, + [7289] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(736), 27, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12824,114 +14879,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [7863] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(738), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(653), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [7982] = 4, + [7355] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(657), 24, + ACTIONS(632), 26, anon_sym_if, anon_sym_import, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -12939,17 +14936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(655), 25, + ACTIONS(630), 28, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -12967,49 +14969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8043] = 4, + [7421] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(347), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(345), 32, + ACTIONS(740), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -13024,28 +15003,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8104] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(661), 24, + ACTIONS(742), 27, anon_sym_if, anon_sym_import, + anon_sym_as, anon_sym_SLASH, + anon_sym_type, anon_sym_const, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -13053,81 +15027,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(659), 25, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [8165] = 14, + [7487] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(503), 1, + ACTIONS(666), 1, anon_sym_PIPE_PIPE, - ACTIONS(505), 1, + ACTIONS(668), 1, anon_sym_AMP_AMP, - ACTIONS(513), 1, + ACTIONS(676), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(662), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(501), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(507), 2, + ACTIONS(670), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(515), 2, + ACTIONS(678), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(509), 4, + ACTIONS(672), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(511), 4, + ACTIONS(674), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(663), 11, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(744), 12, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -13137,125 +15090,110 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(665), 16, + ACTIONS(746), 19, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_as, anon_sym_type, + anon_sym_const, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [8246] = 33, + [7573] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(667), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + ACTIONS(666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(668), 1, + anon_sym_AMP_AMP, + ACTIONS(676), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(670), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(672), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(674), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(748), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8365] = 4, + sym__upname, + ACTIONS(750), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [7659] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(671), 24, - anon_sym_if, - anon_sym_import, + ACTIONS(484), 21, + anon_sym_DOT, anon_sym_SLASH, - anon_sym_const, + anon_sym_EQ, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -13263,20 +15201,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, - sym_visibility_modifier, - sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(669), 25, - ts_builtin_sym_end, + ACTIONS(482), 33, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -13291,1530 +15236,1251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [8426] = 33, + [7725] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(752), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(754), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(673), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [7791] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(640), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + ACTIONS(638), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8545] = 33, + sym__upname, + [7857] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(710), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(675), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [7923] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8664] = 33, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(756), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(758), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(677), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8783] = 14, + [7989] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(505), 1, - anon_sym_AMP_AMP, - ACTIONS(513), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(499), 2, + ACTIONS(662), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(501), 2, + ACTIONS(664), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(507), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(515), 2, + ACTIONS(678), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(517), 3, + ACTIONS(680), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(509), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(511), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(679), 11, + anon_sym_LT_GT, + ACTIONS(710), 21, ts_builtin_sym_end, anon_sym_LBRACE, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - ACTIONS(681), 16, + ACTIONS(712), 23, anon_sym_if, anon_sym_import, - anon_sym_const, - anon_sym_external, + anon_sym_as, anon_sym_type, + anon_sym_const, anon_sym_fn, - anon_sym_try, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym_visibility_modifier, sym_opacity_modifier, sym__decimal, sym__name, - [8864] = 33, + [8063] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(760), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(762), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(683), 1, - anon_sym_RBRACE, - STATE(68), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8129] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [8983] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(628), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(104), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(626), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9099] = 32, + sym__upname, + [8195] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(676), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 20, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 23, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(63), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8271] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9215] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(608), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(78), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(606), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9331] = 32, + sym__upname, + [8337] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(592), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(64), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(590), 28, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9447] = 32, + sym__upname, + [8403] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(764), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(767), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(101), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8469] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9563] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(770), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(772), 27, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(66), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8535] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(676), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9679] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(670), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(672), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(674), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 14, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(103), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8617] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(668), 1, + anon_sym_AMP_AMP, + ACTIONS(676), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9795] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(664), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(670), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(678), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(672), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(674), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 13, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(105), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8701] = 6, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [9911] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(662), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(680), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 23, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 25, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(89), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8771] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10027] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(716), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(73), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(714), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10143] = 32, + sym__upname, + [8836] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(56), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(654), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10259] = 32, + sym__upname, + [8901] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(748), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(750), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(65), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + [8986] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10375] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(794), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(796), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(84), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10491] = 6, + [9071] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(685), 1, - anon_sym_LPAREN, - STATE(162), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 17, + ACTIONS(712), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -14822,22 +16488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(254), 29, + ACTIONS(710), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -14852,693 +16520,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [10555] = 32, + [9136] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(702), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(70), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10671] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, sym__upname, - STATE(83), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10787] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(704), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(55), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [10903] = 32, + [9221] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(87), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11019] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(93), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11135] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(798), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - STATE(96), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11251] = 32, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(461), 1, - anon_sym_try, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - sym_float, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, sym__upname, - STATE(107), 1, - aux_sym__expression_seq, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(627), 1, - sym_try, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(290), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11367] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(800), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(687), 1, - anon_sym_RBRACK, - ACTIONS(689), 1, - anon_sym_DOT_DOT, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11480] = 4, + [9306] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 17, + ACTIONS(708), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -15546,23 +16691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(337), 30, + ACTIONS(706), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -15577,23 +16723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [11539] = 4, + [9371] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 17, + ACTIONS(692), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -15601,23 +16752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(273), 30, + ACTIONS(690), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -15632,109 +16784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [11598] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(695), 1, - anon_sym_RBRACK, - ACTIONS(697), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11711] = 6, + [9436] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(738), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -15742,21 +16813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(736), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -15771,269 +16845,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [11774] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(703), 1, - anon_sym_RBRACK, - ACTIONS(705), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [11887] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(707), 1, - anon_sym_RBRACK, - ACTIONS(709), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12000] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(711), 1, - anon_sym_RBRACK, - ACTIONS(713), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12113] = 4, + [9501] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 17, + ACTIONS(734), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16041,23 +16874,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(619), 30, + ACTIONS(732), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16072,105 +16906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12172] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(715), 1, - anon_sym_RBRACK, - ACTIONS(717), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12285] = 4, + [9566] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(319), 17, + ACTIONS(696), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16178,23 +16935,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(317), 30, + ACTIONS(694), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16209,23 +16967,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12344] = 4, + [9631] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 17, + ACTIONS(684), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16233,23 +16996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(321), 30, + ACTIONS(682), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16264,23 +17028,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12403] = 4, + [9696] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 17, + ACTIONS(688), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16288,23 +17057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(260), 30, + ACTIONS(686), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16319,23 +17089,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12462] = 4, + [9761] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 17, + ACTIONS(754), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16343,23 +17118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(373), 30, + ACTIONS(752), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16374,269 +17150,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12521] = 31, + [9826] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(311), 1, - sym__discard_name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(719), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1175), 1, - sym_hole, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(579), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12634] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(744), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(721), 1, - anon_sym_RBRACK, - ACTIONS(723), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12747] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + sym__upname, + ACTIONS(746), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - ACTIONS(725), 1, - anon_sym_RBRACK, - ACTIONS(727), 1, - anon_sym_DOT_DOT, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [12860] = 4, + [9911] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 17, + ACTIONS(652), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16644,23 +17250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(443), 30, + ACTIONS(650), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16675,78 +17282,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12919] = 4, + [9976] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(381), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(786), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(792), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(802), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [12978] = 4, + ACTIONS(804), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10061] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(343), 17, + ACTIONS(720), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16754,23 +17382,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(341), 30, + ACTIONS(718), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16785,23 +17414,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13037] = 4, + [10126] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(355), 17, + ACTIONS(767), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16809,23 +17443,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, - sym__decimal, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, sym__name, - ACTIONS(353), 30, + ACTIONS(764), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16840,82 +17475,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13096] = 4, + [10191] = 14, ACTIONS(3), 1, sym_module_comment, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(359), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(357), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(786), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(792), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(806), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13155] = 6, + ACTIONS(808), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10276] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(742), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -16923,21 +17575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(740), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -16952,183 +17607,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13218] = 30, + [10341] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 23, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(729), 1, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - STATE(1267), 1, - sym_case_subjects, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(568), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13328] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + sym__upname, + ACTIONS(712), 24, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(731), 1, - anon_sym_RPAREN, - ACTIONS(733), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(570), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13438] = 4, + [10410] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 17, + ACTIONS(409), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17136,22 +17694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(389), 29, + ACTIONS(407), 34, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17166,183 +17731,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13496] = 30, + [10475] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(810), 12, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(735), 1, - anon_sym_RBRACK, - ACTIONS(737), 1, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(538), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13606] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + sym__upname, + ACTIONS(812), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(739), 1, - anon_sym_RPAREN, - ACTIONS(741), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(564), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13716] = 4, + [10560] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 17, + ACTIONS(758), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17350,22 +17831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(393), 29, + ACTIONS(756), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17380,265 +17863,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13774] = 4, + [10625] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(415), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(413), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(786), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(792), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [13832] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(712), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(743), 1, - anon_sym_RBRACK, - ACTIONS(745), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(521), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [13942] = 4, + [10708] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(403), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(401), 29, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(786), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(792), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14000] = 4, + ACTIONS(712), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10789] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(429), 29, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 16, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14058] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(712), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10868] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(722), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(724), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [10953] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 17, + ACTIONS(762), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17646,22 +18170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(405), 29, + ACTIONS(760), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17676,47 +18202,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14116] = 5, + [11018] = 14, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, - anon_sym_DOT, + ACTIONS(778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(780), 1, + anon_sym_AMP_AMP, + ACTIONS(788), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(774), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, anon_sym_DASH, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + ACTIONS(782), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(784), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(786), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(658), 12, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(660), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 28, + [11103] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(788), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 20, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17725,31 +18317,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14176] = 5, + ACTIONS(712), 22, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [11178] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(409), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 17, + ACTIONS(772), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17757,21 +18368,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(264), 28, + ACTIONS(770), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17786,25 +18400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14236] = 5, + [11243] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(747), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 17, + ACTIONS(700), 26, + anon_sym_if, + anon_sym_import, anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, anon_sym_fn, - anon_sym_try, + anon_sym_external, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -17812,21 +18429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, sym__name, - ACTIONS(419), 28, + ACTIONS(698), 27, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_AT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -17841,767 +18461,633 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [14296] = 30, + [11308] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(774), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(776), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(790), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(792), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 21, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 22, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - ACTIONS(749), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, + [11381] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14406] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(712), 26, + anon_sym_if, + anon_sym_import, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_external, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, + sym_visibility_modifier, + sym_opacity_modifier, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - ACTIONS(751), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(710), 27, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [14516] = 30, + sym__upname, + [11446] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(814), 1, + anon_sym_RPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(818), 1, + anon_sym_DOT_DOT, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - ACTIONS(693), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(753), 1, - anon_sym_RPAREN, - STATE(375), 1, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1592), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14626] = 30, + [11572] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(755), 1, - anon_sym_RBRACK, - ACTIONS(757), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(828), 1, + anon_sym_RPAREN, + ACTIONS(830), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1553), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(536), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14736] = 30, + [11698] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, + sym_float, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(759), 1, + ACTIONS(832), 1, anon_sym_RPAREN, - ACTIONS(761), 1, - sym_float, - STATE(375), 1, + ACTIONS(834), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1554), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(563), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14846] = 30, + [11824] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - ACTIONS(693), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(763), 1, + ACTIONS(836), 1, anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(838), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1498), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [14956] = 30, + [11950] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - ACTIONS(693), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(765), 1, + ACTIONS(840), 1, anon_sym_RPAREN, - STATE(375), 1, + ACTIONS(842), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1560), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15066] = 30, + [12076] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(393), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - ACTIONS(767), 1, + ACTIONS(391), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15176] = 30, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(769), 1, - anon_sym_RPAREN, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [15286] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(266), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(264), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18616,23 +19102,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15346] = 4, + [12140] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 17, + ACTIONS(476), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -18640,22 +19126,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(435), 29, + ACTIONS(474), 33, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18670,23 +19162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15404] = 4, + [12204] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 17, + ACTIONS(405), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -18694,22 +19186,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(425), 29, + ACTIONS(403), 33, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -18724,5051 +19222,4705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [15462] = 30, + [12268] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, + sym_float, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(771), 1, + ACTIONS(844), 1, anon_sym_RPAREN, - ACTIONS(773), 1, - sym_float, - STATE(375), 1, + ACTIONS(846), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1438), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(571), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15572] = 30, + [12394] = 35, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(729), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(848), 1, + anon_sym_RPAREN, + ACTIONS(850), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1524), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1198), 1, - sym_case_subjects, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(568), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15682] = 30, + [12520] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(729), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(852), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1251), 1, - sym_case_subjects, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(568), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15792] = 30, + [12643] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(775), 1, - anon_sym_RBRACK, - ACTIONS(777), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(854), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(543), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [15902] = 30, + [12766] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - ACTIONS(693), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(779), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(375), 1, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16012] = 30, + [12889] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(729), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(858), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1263), 1, - sym_case_subjects, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(568), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16122] = 29, + [13012] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(783), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(25), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(860), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(681), 1, sym_tuple, - STATE(1051), 1, + STATE(685), 1, + sym_anonymous_function, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(39), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(69), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16229] = 29, + [13135] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(279), 1, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - ACTIONS(693), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, sym__name, - ACTIONS(785), 1, - anon_sym_LBRACE, - STATE(375), 1, + ACTIONS(862), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16336] = 29, + [13258] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(788), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(864), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(597), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16443] = 29, + [13381] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(790), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(866), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(615), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16550] = 31, + [13504] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(792), 1, - anon_sym_GT_GT, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, anon_sym_BANG, - ACTIONS(800), 1, + ACTIONS(822), 1, sym_float, - STATE(133), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(844), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(930), 1, - sym_expression_bit_string_segment, - STATE(1100), 1, + STATE(1438), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(927), 9, + STATE(927), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16661] = 29, + [13627] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(804), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(806), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(808), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(814), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(816), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, anon_sym_BANG, + ACTIONS(822), 1, + sym_float, ACTIONS(824), 1, - anon_sym_DQUOTE, + sym__discard_name, ACTIONS(826), 1, - sym_float, - ACTIONS(830), 1, - sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - STATE(305), 1, + ACTIONS(848), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(327), 1, + STATE(681), 1, sym_tuple, - STATE(328), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1156), 1, + STATE(1524), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(325), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(828), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(347), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16768] = 29, + [13750] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(836), 1, + ACTIONS(814), 1, + anon_sym_RPAREN, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1592), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(590), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16875] = 29, + [13873] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(838), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(828), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1553), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(611), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [16982] = 29, + [13996] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(868), 1, + anon_sym_LPAREN, + STATE(223), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(840), 1, + ACTIONS(373), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(616), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [17089] = 29, + sym__upname, + [14063] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(842), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(836), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1498), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(588), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17196] = 29, + [14186] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(844), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(870), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(607), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17303] = 29, + [14309] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(804), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(806), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(808), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(814), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(816), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, - ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, - anon_sym_BANG, - ACTIONS(824), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(830), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(832), 1, - sym__name, - ACTIONS(834), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(846), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(305), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(832), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(327), 1, + STATE(681), 1, sym_tuple, - STATE(328), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1156), 1, + STATE(1554), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(325), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(828), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(332), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17410] = 29, + [14432] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(848), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(872), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(592), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17517] = 29, + [14555] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(850), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(840), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1560), 1, + sym_argument, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(602), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17624] = 29, + [14678] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(804), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(806), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(808), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(814), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(816), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, - ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, - anon_sym_BANG, - ACTIONS(824), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(830), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(832), 1, - sym__name, - ACTIONS(834), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(852), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(305), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(874), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(327), 1, + STATE(681), 1, sym_tuple, - STATE(328), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1156), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(325), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(828), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(339), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17731] = 29, + [14801] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(854), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(876), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(614), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17838] = 29, + [14924] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(856), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(878), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(604), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [17945] = 29, + [15047] = 34, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(858), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(375), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + ACTIONS(880), 1, + anon_sym_RPAREN, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(596), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18052] = 29, + [15170] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(708), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(860), 1, + ACTIONS(706), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(331), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18159] = 29, + sym__upname, + [15232] = 33, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(804), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(806), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(808), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(814), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(816), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, - ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, - anon_sym_BANG, - ACTIONS(824), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(830), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(832), 1, - sym__name, - ACTIONS(834), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(862), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(822), 1, sym_float, - STATE(305), 1, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(826), 1, + sym__name, + STATE(649), 1, sym_identifier, - STATE(327), 1, + STATE(681), 1, sym_tuple, - STATE(328), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1156), 1, + STATE(1648), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, + STATE(1702), 1, + sym_argument, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1844), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(325), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(828), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(346), 11, + STATE(927), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18266] = 29, + [15352] = 32, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(804), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(806), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(808), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(814), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(816), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, - ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, - anon_sym_BANG, - ACTIONS(824), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(830), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(832), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(834), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(864), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(824), 1, + sym__discard_name, + ACTIONS(884), 1, sym_float, - STATE(305), 1, + STATE(649), 1, sym_identifier, - STATE(327), 1, + STATE(681), 1, sym_tuple, - STATE(328), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1156), 1, + STATE(1630), 1, + sym_hole, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(299), 2, + ACTIONS(882), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(325), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(828), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(348), 11, + STATE(919), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [18373] = 29, + [15470] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(385), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(866), 1, + ACTIONS(383), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(354), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18480] = 29, + sym__upname, + [15532] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(528), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(868), 1, + ACTIONS(526), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(355), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18587] = 29, + sym__upname, + [15594] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(870), 1, + ACTIONS(459), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(352), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18694] = 29, + sym__upname, + [15660] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(872), 1, + ACTIONS(512), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(600), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18801] = 29, + sym__upname, + [15722] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(716), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(874), 1, + ACTIONS(714), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, sym__hex, sym__octal, sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(351), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [18908] = 31, + sym__upname, + [15784] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(876), 1, + sym__decimal, + sym__name, + ACTIONS(453), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19019] = 31, + sym__upname, + [15846] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(524), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(878), 1, + sym__decimal, + sym__name, + ACTIONS(522), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19130] = 31, + sym__upname, + [15908] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(880), 1, + sym__decimal, + sym__name, + ACTIONS(387), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(961), 1, - sym_expression_bit_string_segment, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19241] = 31, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [15970] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(882), 1, + sym__decimal, + sym__name, + ACTIONS(504), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19352] = 31, + sym__upname, + [16032] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(397), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(884), 1, + sym__decimal, + sym__name, + ACTIONS(395), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19463] = 29, + sym__upname, + [16094] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(510), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(886), 1, + ACTIONS(508), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(583), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19570] = 29, + sym__upname, + [16156] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(886), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(888), 1, + ACTIONS(459), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(85), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19677] = 29, + sym__upname, + [16222] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(401), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(890), 1, + ACTIONS(399), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(81), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19784] = 31, + sym__upname, + [16284] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(496), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(892), 1, + sym__decimal, + sym__name, + ACTIONS(494), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [19895] = 29, + sym__upname, + [16346] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(642), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(894), 1, + ACTIONS(459), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(80), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20002] = 29, + sym__upname, + [16409] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(632), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(896), 1, + ACTIONS(630), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(75), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20109] = 29, + sym__upname, + [16470] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(592), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(898), 1, + ACTIONS(590), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(72), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20216] = 29, + sym__upname, + [16531] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(636), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(900), 1, + ACTIONS(634), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(67), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20323] = 31, + sym__upname, + [16592] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(648), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(902), 1, + sym__decimal, + sym__name, + ACTIONS(459), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(989), 1, - sym_expression_bit_string_segment, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20434] = 29, + sym__upname, + [16655] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(596), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(904), 1, + ACTIONS(594), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(424), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20541] = 29, + sym__upname, + [16716] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(906), 1, + ACTIONS(459), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [16779] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(614), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(612), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(610), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20648] = 31, + sym__upname, + [16840] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(890), 1, + anon_sym_LPAREN, + STATE(293), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(373), 27, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [16905] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(640), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, anon_sym_let, - ACTIONS(796), 1, anon_sym_assert, - ACTIONS(798), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - ACTIONS(908), 1, + sym__decimal, + sym__name, + ACTIONS(638), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [16966] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, + ACTIONS(608), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(606), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20759] = 29, + sym__upname, + [17027] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(628), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(626), 30, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [17088] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(720), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(910), 1, + ACTIONS(718), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [17148] = 4, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, + ACTIONS(455), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(453), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(413), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [20866] = 29, + sym__upname, + [17208] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(912), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(892), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, + anon_sym_DOT_DOT, + ACTIONS(896), 1, sym_float, - STATE(375), 1, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(403), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [20973] = 29, + [17322] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, + sym__name, + ACTIONS(654), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(693), 1, + [17382] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(914), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(375), 1, + ACTIONS(898), 1, + anon_sym_RBRACK, + ACTIONS(900), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(402), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21080] = 29, + [17496] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(916), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(375), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(422), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21187] = 29, + [17610] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(918), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(908), 1, sym_float, - STATE(375), 1, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + ACTIONS(906), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(405), 11, + STATE(923), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21294] = 29, + [17722] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(767), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(920), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(406), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21401] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, + ACTIONS(764), 29, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(922), 1, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(407), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21508] = 29, + sym__upname, + [17782] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(652), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, sym__name, - ACTIONS(924), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(408), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21615] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(650), 29, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, - anon_sym_BANG, - ACTIONS(800), 1, sym_float, - ACTIONS(926), 1, - anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21726] = 31, + sym__upname, + [17842] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, anon_sym_BANG, - ACTIONS(800), 1, + ACTIONS(896), 1, sym_float, - ACTIONS(928), 1, - anon_sym_GT_GT, - STATE(133), 1, + ACTIONS(910), 1, + anon_sym_RBRACK, + ACTIONS(912), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(927), 9, + STATE(848), 12, + sym__expression, + sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [21837] = 29, + [17956] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(930), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(591), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [21944] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(742), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(289), 1, anon_sym_fn, - ACTIONS(291), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(295), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(297), 1, anon_sym_let, - ACTIONS(299), 1, anon_sym_assert, - ACTIONS(301), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(691), 1, - sym_float, - ACTIONS(693), 1, sym__name, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(509), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [22051] = 31, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(740), 29, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, - anon_sym_BANG, - ACTIONS(800), 1, sym_float, - ACTIONS(932), 1, - anon_sym_GT_GT, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1004), 1, - sym_expression_bit_string_segment, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [22162] = 29, + sym__upname, + [18016] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(277), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(279), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(934), 1, - sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(593), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [22269] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_POUND, - ACTIONS(283), 1, - anon_sym_LBRACK, - ACTIONS(285), 1, - anon_sym_LT_LT, - ACTIONS(287), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, + ACTIONS(820), 1, anon_sym_BANG, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(936), 1, + ACTIONS(896), 1, sym_float, - STATE(375), 1, + ACTIONS(914), 1, + anon_sym_RBRACK, + ACTIONS(916), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(598), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22376] = 4, + [18130] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(493), 17, + ACTIONS(405), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23776,21 +23928,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(491), 28, + ACTIONS(403), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23805,23 +23959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [22433] = 4, + [18190] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(521), 17, + ACTIONS(758), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23829,21 +23983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(519), 28, + ACTIONS(756), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23858,23 +24015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [22490] = 4, + [18250] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 17, + ACTIONS(762), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23882,21 +24039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(601), 28, + ACTIONS(760), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23911,23 +24071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [22547] = 4, + [18310] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(529), 17, + ACTIONS(772), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23935,21 +24095,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(527), 28, + ACTIONS(770), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -23964,23 +24127,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [22604] = 4, + [18370] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 17, + ACTIONS(738), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -23988,21 +24151,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(605), 28, + ACTIONS(736), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24017,597 +24183,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [22661] = 4, + [18430] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(525), 17, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(81), 1, anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(523), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [22718] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(611), 17, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(609), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(101), 1, sym__upname, - [22775] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(816), 1, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(820), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(938), 1, + ACTIONS(896), 1, sym_float, - STATE(133), 1, + ACTIONS(918), 1, + anon_sym_RBRACK, + ACTIONS(920), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(284), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [22882] = 29, + [18544] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(940), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(280), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [22989] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(816), 1, anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, + ACTIONS(820), 1, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(942), 1, + ACTIONS(896), 1, sym_float, - STATE(133), 1, + ACTIONS(922), 1, + anon_sym_RBRACK, + ACTIONS(924), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(283), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23096] = 29, + [18658] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(944), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(282), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23203] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(734), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(946), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(281), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23310] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(732), 29, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(948), 1, sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(287), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23417] = 4, + sym__upname, + [18718] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(671), 17, + ACTIONS(696), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24615,21 +24429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(669), 28, + ACTIONS(694), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24644,23 +24461,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [23474] = 4, + [18778] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(637), 17, + ACTIONS(754), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24668,21 +24485,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(635), 28, + ACTIONS(752), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24697,23 +24517,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [23531] = 4, + [18838] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(617), 17, + ACTIONS(461), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -24721,21 +24546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(615), 28, + ACTIONS(459), 26, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -24750,257 +24575,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [23588] = 29, + [18902] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(926), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(812), 1, anon_sym_fn, - ACTIONS(814), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(816), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(818), 1, anon_sym_let, - ACTIONS(820), 1, anon_sym_assert, - ACTIONS(822), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, sym__decimal, - ACTIONS(832), 1, sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(950), 1, - sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(356), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23695] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, + ACTIONS(459), 26, anon_sym_LBRACE, - ACTIONS(451), 1, + anon_sym_RBRACE, anon_sym_POUND, - ACTIONS(453), 1, anon_sym_LBRACK, - ACTIONS(455), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(952), 1, sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(291), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [23802] = 29, + sym__upname, + [18966] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(954), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(133), 1, + ACTIONS(930), 1, + anon_sym_RBRACK, + ACTIONS(932), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(285), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [23909] = 4, + [19080] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(661), 17, + ACTIONS(700), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25008,21 +24740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(659), 28, + ACTIONS(698), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25037,23 +24772,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [23966] = 4, + [19140] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 17, + ACTIONS(385), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25061,21 +24797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(487), 28, + ACTIONS(383), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25090,23 +24828,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [24023] = 4, + [19200] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(647), 17, + ACTIONS(684), 19, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25114,21 +24852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(645), 28, + ACTIONS(682), 29, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25143,257 +24884,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [24080] = 29, + [19260] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(956), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(133), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + ACTIONS(936), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(289), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24187] = 29, + [19374] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(504), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, sym__upname, - ACTIONS(781), 1, + [19434] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(958), 1, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(25), 1, + ACTIONS(938), 1, + anon_sym_RBRACK, + ACTIONS(940), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(681), 1, sym_tuple, - STATE(1051), 1, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(39), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(90), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24294] = 29, + [19548] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(19), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(21), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(35), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(53), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(55), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(57), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(960), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(25), 1, + ACTIONS(942), 1, + anon_sym_RBRACK, + ACTIONS(944), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, + STATE(681), 1, sym_tuple, - STATE(1051), 1, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1178), 1, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, sym__maybe_tuple_expression, - STATE(1232), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [19662] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(946), 1, + anon_sym_RBRACK, + ACTIONS(948), 1, + anon_sym_DOT_DOT, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(6), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(39), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(51), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(92), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24401] = 4, + [19776] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 17, + ACTIONS(409), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25401,21 +25297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(649), 28, + ACTIONS(407), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25430,23 +25328,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [24458] = 4, + [19836] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(657), 17, + ACTIONS(514), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -25454,21 +25353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(655), 28, + ACTIONS(512), 28, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -25483,892 +25384,491 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [24515] = 29, + [19896] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, + ACTIONS(71), 1, anon_sym_LBRACE, - ACTIONS(451), 1, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(455), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(463), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(465), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(467), 1, - anon_sym_let, - ACTIONS(469), 1, - anon_sym_assert, - ACTIONS(471), 1, - anon_sym_BANG, - ACTIONS(473), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(479), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(962), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - STATE(133), 1, + ACTIONS(950), 1, + anon_sym_RBRACK, + ACTIONS(952), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(163), 1, + STATE(681), 1, sym_tuple, - STATE(175), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1100), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1199), 1, + STATE(1796), 1, sym__maybe_record_expression, - STATE(1231), 1, + STATE(1821), 1, sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(121), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(164), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(477), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(286), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [24622] = 29, + [20010] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(692), 19, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(964), 1, + ACTIONS(690), 29, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(59), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [24729] = 29, + sym__upname, + [20070] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(966), 1, + ACTIONS(482), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, sym__hex, sym__octal, sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(288), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [24836] = 29, + sym__upname, + [20130] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(11), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(474), 28, anon_sym_LBRACE, - ACTIONS(17), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(19), 1, anon_sym_LBRACK, - ACTIONS(21), 1, anon_sym_LT_LT, - ACTIONS(23), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [20190] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(528), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(33), 1, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(35), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(37), 1, anon_sym_let, - ACTIONS(39), 1, anon_sym_assert, - ACTIONS(41), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, sym__decimal, - ACTIONS(55), 1, sym__name, - ACTIONS(57), 1, - sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(968), 1, + ACTIONS(526), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, sym__hex, sym__octal, sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(100), 11, - sym__expression, - sym_binary_expression, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [24943] = 29, + sym__upname, + [20250] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(279), 1, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - ACTIONS(283), 1, + ACTIONS(75), 1, anon_sym_LBRACK, - ACTIONS(285), 1, + ACTIONS(77), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, + ACTIONS(79), 1, anon_sym_fn, - ACTIONS(291), 1, + ACTIONS(81), 1, anon_sym_todo, - ACTIONS(295), 1, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(315), 1, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - ACTIONS(691), 1, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, - ACTIONS(693), 1, - sym__name, - ACTIONS(970), 1, - anon_sym_LBRACE, - STATE(375), 1, + ACTIONS(954), 1, + anon_sym_RBRACK, + ACTIONS(956), 1, + anon_sym_DOT_DOT, + STATE(649), 1, sym_identifier, - STATE(380), 1, + STATE(681), 1, sym_tuple, - STATE(387), 1, + STATE(685), 1, sym_anonymous_function, - STATE(1116), 1, + STATE(1682), 1, sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, + STATE(1796), 1, sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(359), 2, + STATE(642), 2, sym_constructor_name, sym_remote_constructor_name, - STATE(392), 2, + STATE(679), 2, sym_record, sym_record_update, - ACTIONS(307), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, + STATE(644), 5, + sym_block, sym_case, sym_tuple_access, sym_field_access, sym_function_call, - STATE(509), 11, + STATE(848), 12, sym__expression, sym_binary_expression, sym__expression_unit, sym_todo, + sym_panic, + sym_echo, sym_list, sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, + sym_boolean_negation, + sym_integer_negation, sym_string, sym_integer, - [25050] = 30, + [20364] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(381), 20, + anon_sym_as, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(459), 1, anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, - anon_sym_BANG, - ACTIONS(800), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1120), 1, - sym_expression_bit_string_segment, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(927), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25158] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, - anon_sym_todo, - ACTIONS(465), 1, - anon_sym_case, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(794), 1, - anon_sym_let, - ACTIONS(796), 1, - anon_sym_assert, - ACTIONS(798), 1, - anon_sym_BANG, - ACTIONS(973), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(248), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25263] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(802), 1, - anon_sym_LBRACE, - ACTIONS(804), 1, - anon_sym_POUND, - ACTIONS(806), 1, - anon_sym_LBRACK, - ACTIONS(808), 1, - anon_sym_LT_LT, - ACTIONS(810), 1, - anon_sym_DASH, - ACTIONS(812), 1, - anon_sym_fn, - ACTIONS(814), 1, - anon_sym_todo, - ACTIONS(816), 1, - anon_sym_case, - ACTIONS(818), 1, - anon_sym_let, - ACTIONS(820), 1, - anon_sym_assert, - ACTIONS(822), 1, - anon_sym_BANG, - ACTIONS(824), 1, - anon_sym_DQUOTE, - ACTIONS(830), 1, - sym__decimal, - ACTIONS(832), 1, - sym__name, - ACTIONS(834), 1, - sym__upname, - ACTIONS(975), 1, - sym_float, - STATE(305), 1, - sym_identifier, - STATE(327), 1, - sym_tuple, - STATE(328), 1, - sym_anonymous_function, - STATE(1156), 1, - sym__maybe_function_expression, - STATE(1195), 1, - sym__maybe_tuple_expression, - STATE(1240), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(299), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(325), 2, - sym_record, - sym_record_update, - ACTIONS(828), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(304), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(342), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25368] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(447), 1, - anon_sym_LBRACE, - ACTIONS(451), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_LBRACK, - ACTIONS(455), 1, - anon_sym_LT_LT, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(459), 1, - anon_sym_fn, - ACTIONS(463), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, - ACTIONS(465), 1, + anon_sym_panic, + anon_sym_echo, anon_sym_case, - ACTIONS(467), 1, anon_sym_let, - ACTIONS(469), 1, anon_sym_assert, - ACTIONS(471), 1, + anon_sym_use, anon_sym_BANG, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, sym__decimal, - ACTIONS(481), 1, sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(973), 1, - sym_float, - STATE(133), 1, - sym_identifier, - STATE(163), 1, - sym_tuple, - STATE(175), 1, - sym_anonymous_function, - STATE(1100), 1, - sym__maybe_function_expression, - STATE(1199), 1, - sym__maybe_record_expression, - STATE(1231), 1, - sym__maybe_tuple_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(121), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(164), 2, - sym_record, - sym_record_update, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(151), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(248), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25473] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(277), 1, + ACTIONS(379), 28, anon_sym_LBRACE, - ACTIONS(279), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, - ACTIONS(283), 1, anon_sym_LBRACK, - ACTIONS(285), 1, anon_sym_LT_LT, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(289), 1, - anon_sym_fn, - ACTIONS(291), 1, - anon_sym_todo, - ACTIONS(295), 1, - anon_sym_case, - ACTIONS(297), 1, - anon_sym_let, - ACTIONS(299), 1, - anon_sym_assert, - ACTIONS(301), 1, - anon_sym_BANG, - ACTIONS(303), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(977), 1, sym_float, - STATE(375), 1, - sym_identifier, - STATE(380), 1, - sym_tuple, - STATE(387), 1, - sym_anonymous_function, - STATE(1116), 1, - sym__maybe_function_expression, - STATE(1218), 1, - sym__maybe_tuple_expression, - STATE(1229), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(359), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(392), 2, - sym_record, - sym_record_update, - ACTIONS(307), 3, sym__hex, sym__octal, sym__binary, - STATE(374), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(426), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25578] = 29, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - anon_sym_POUND, - ACTIONS(19), 1, - anon_sym_LBRACK, - ACTIONS(21), 1, - anon_sym_LT_LT, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(33), 1, - anon_sym_todo, - ACTIONS(35), 1, - anon_sym_case, - ACTIONS(37), 1, - anon_sym_let, - ACTIONS(39), 1, - anon_sym_assert, - ACTIONS(41), 1, - anon_sym_BANG, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(55), 1, - sym__name, - ACTIONS(57), 1, sym__upname, - ACTIONS(781), 1, - anon_sym_fn, - ACTIONS(979), 1, - sym_float, - STATE(25), 1, - sym_identifier, - STATE(29), 1, - sym_anonymous_function, - STATE(40), 1, - sym_tuple, - STATE(1051), 1, - sym__maybe_function_expression, - STATE(1178), 1, - sym__maybe_tuple_expression, - STATE(1232), 1, - sym__maybe_record_expression, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(6), 2, - sym_constructor_name, - sym_remote_constructor_name, - STATE(39), 2, - sym_record, - sym_record_update, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(8), 5, - sym_expression_group, - sym_case, - sym_tuple_access, - sym_field_access, - sym_function_call, - STATE(77), 9, - sym__expression_unit, - sym_todo, - sym_list, - sym__expression_bit_string, - sym_let, - sym_assert, - sym_negation, - sym_string, - sym_integer, - [25683] = 6, + [20424] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(389), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 15, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 22, + ACTIONS(387), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -26383,56 +25883,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25741] = 11, + [20484] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(393), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(541), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 15, + ACTIONS(391), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -26440,140 +25932,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25809] = 12, + [20544] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(397), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(541), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 13, + ACTIONS(395), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25879] = 13, + [20604] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(401), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(541), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 12, + ACTIONS(399), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [25951] = 4, + [20664] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 17, + ACTIONS(524), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, @@ -26581,15 +26079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 25, + ACTIONS(522), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -26607,173 +26110,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26005] = 14, + [20724] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(496), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(665), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(663), 11, + ACTIONS(494), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26079] = 14, + [20784] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(510), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(641), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(639), 11, + ACTIONS(508), 28, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26153] = 9, + [20844] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(688), 19, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 13, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 19, + ACTIONS(686), 29, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -26782,228 +26272,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26217] = 14, + [20904] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(497), 9, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, anon_sym_fn, - anon_sym_try, - anon_sym_todo, + ACTIONS(87), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(495), 11, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(960), 1, + anon_sym_echo, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(964), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(718), 1, + sym_pipeline_echo, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(910), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21015] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1813), 1, + sym_case_subjects, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [26291] = 14, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21126] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(596), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(633), 9, - anon_sym_fn, - anon_sym_try, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(631), 11, + ACTIONS(594), 27, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26365] = 14, + [21185] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(991), 1, - anon_sym_PIPE_GT, - ACTIONS(997), 1, - anon_sym_AMP_AMP, - ACTIONS(999), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(981), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(995), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(987), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(989), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(681), 9, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - anon_sym_BANG, - sym__decimal, - sym__name, - ACTIONS(679), 11, + ACTIONS(203), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(205), 1, anon_sym_POUND, + ACTIONS(207), 1, anon_sym_LBRACK, + ACTIONS(209), 1, anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(970), 1, + anon_sym_echo, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(974), 1, sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(972), 1, + sym_pipeline_echo, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [26439] = 8, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(971), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21296] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(981), 2, + ACTIONS(632), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(985), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(993), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(983), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 13, anon_sym_fn, - anon_sym_try, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, + anon_sym_use, anon_sym_BANG, sym__decimal, sym__name, - ACTIONS(539), 20, + ACTIONS(630), 27, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -27016,142 +26626,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26501] = 4, + [21355] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(976), 1, + anon_sym_RBRACK, + ACTIONS(978), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(365), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26554] = 4, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(843), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21466] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(980), 1, + anon_sym_RBRACK, + ACTIONS(982), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(331), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(329), 31, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(854), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21577] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26607] = 4, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(984), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21688] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 10, - anon_sym_DOT, + ACTIONS(628), 20, + anon_sym_as, anon_sym_SLASH, - anon_sym_EQ, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(349), 31, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(626), 27, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -27166,226 +26929,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26660] = 4, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [21747] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(363), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(361), 31, + ACTIONS(71), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26713] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(986), 1, + anon_sym_RBRACK, + ACTIONS(988), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(347), 10, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(345), 31, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26766] = 4, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(853), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21858] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(990), 1, + anon_sym_RPAREN, + ACTIONS(992), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 9, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(619), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26817] = 4, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(901), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [21969] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(994), 1, + anon_sym_RBRACK, + ACTIONS(996), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 9, - anon_sym_SLASH, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(443), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [26868] = 6, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(846), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22080] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1001), 1, - anon_sym_LPAREN, - STATE(320), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 11, + ACTIONS(614), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(254), 25, + ACTIONS(612), 27, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -27403,35 +27227,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26922] = 4, + [22139] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 11, + ACTIONS(592), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(381), 26, + ACTIONS(590), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27448,125 +27282,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [26971] = 4, + [22198] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(343), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(341), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, + ACTIONS(998), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27020] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22309] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1000), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(373), 26, - anon_sym_RBRACE, - anon_sym_DOT, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22420] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, + ACTIONS(1002), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27069] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22531] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 11, + ACTIONS(640), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(273), 26, + ACTIONS(638), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27583,83 +27580,854 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27118] = 6, + [22590] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(268), 1, - anon_sym_DOT, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(266), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(264), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1763), 1, + sym_case_subjects, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22701] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - [27171] = 6, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1004), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22812] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1800), 1, + sym_case_subjects, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [22923] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1006), 1, + anon_sym_RPAREN, + ACTIONS(1008), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(899), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23034] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1010), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23145] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1028), 1, + anon_sym_echo, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1036), 1, + sym_float, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(428), 1, + sym_pipeline_echo, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(429), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23256] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1046), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23367] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1064), 1, + anon_sym_echo, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1072), 1, + sym_float, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(115), 1, + sym_pipeline_echo, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(117), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23478] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1082), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23589] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1084), 1, + anon_sym_RPAREN, + ACTIONS(1086), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(865), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23700] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1003), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(608), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(264), 24, + ACTIONS(606), 27, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -27677,35 +28445,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27224] = 4, + [23759] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 11, + ACTIONS(636), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(361), 26, + ACTIONS(634), 27, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27722,260 +28500,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27273] = 4, + [23818] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(331), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(329), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1088), 1, + anon_sym_RPAREN, + ACTIONS(1090), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27322] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(900), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [23929] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(339), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(337), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1824), 1, + sym_case_subjects, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27371] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24040] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(359), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(357), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1794), 1, + sym_case_subjects, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27420] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24151] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(367), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(365), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1100), 1, + anon_sym_echo, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1106), 1, sym_float, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(612), 1, + sym_pipeline_echo, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27469] = 4, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(590), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24262] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(355), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(353), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, + ACTIONS(1116), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27518] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24373] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(319), 11, + ACTIONS(461), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(317), 26, + ACTIONS(459), 26, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -27992,35 +28961,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27567] = 4, + [24434] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(648), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 11, + ACTIONS(461), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(349), 26, + ACTIONS(459), 26, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28037,80 +29017,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27616] = 4, + [24495] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1118), 1, + anon_sym_RPAREN, + ACTIONS(1120), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(321), 26, - anon_sym_RBRACE, - anon_sym_DOT, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(879), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24606] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1122), 1, + anon_sym_RBRACK, + ACTIONS(1124), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [27665] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(860), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24717] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1126), 1, + anon_sym_LPAREN, + ACTIONS(1128), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 11, + ACTIONS(600), 19, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(260), 26, + ACTIONS(598), 26, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28127,79 +29236,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27714] = 4, + [24780] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(347), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, sym__name, - ACTIONS(345), 26, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1130), 1, + anon_sym_RBRACK, + ACTIONS(1132), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(844), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [24891] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, - anon_sym_LPAREN, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1835), 1, + sym_case_subjects, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25002] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - [27763] = 4, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1134), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25113] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(642), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 11, + ACTIONS(461), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(435), 25, + ACTIONS(459), 26, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28216,32 +29535,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27811] = 4, + [25174] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1136), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25285] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 11, + ACTIONS(381), 19, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(425), 25, + ACTIONS(379), 28, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, @@ -28260,33 +29671,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27859] = 4, + [25344] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1138), 1, + anon_sym_echo, + ACTIONS(1140), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(718), 1, + sym_pipeline_echo, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(804), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25455] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1142), 1, + anon_sym_LPAREN, + ACTIONS(1144), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(403), 11, + ACTIONS(618), 19, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(401), 25, + ACTIONS(616), 26, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28304,78 +29809,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [27907] = 4, + [25518] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1146), 1, + anon_sym_RBRACK, + ACTIONS(1148), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(845), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25629] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, sym__decimal, - sym__discard_name, + ACTIONS(99), 1, sym__name, - ACTIONS(405), 25, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(966), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + STATE(1846), 1, + sym_case_subjects, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(878), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25740] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1150), 1, + anon_sym_RPAREN, + ACTIONS(1152), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(872), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25851] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, sym__upname, - [27955] = 4, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1156), 1, + anon_sym_echo, + ACTIONS(1158), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(164), 1, + sym_pipeline_echo, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(163), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [25962] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1160), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(415), 11, + ACTIONS(618), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(413), 25, + ACTIONS(616), 26, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT_LT, anon_sym_PIPE_PIPE, @@ -28392,33 +30189,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28003] = 4, + [26023] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1162), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 11, + ACTIONS(600), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(389), 25, + ACTIONS(598), 26, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -28436,166 +30245,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28051] = 4, + [26084] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(431), 11, - anon_sym_SLASH, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, sym__decimal, - sym__discard_name, + ACTIONS(449), 1, sym__name, - ACTIONS(429), 25, - anon_sym_RBRACE, - anon_sym_DOT, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1164), 1, + anon_sym_echo, + ACTIONS(1166), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(520), 1, + sym_pipeline_echo, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(519), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26195] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1168), 1, + anon_sym_RPAREN, + ACTIONS(1170), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28099] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(881), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26306] = 30, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1172), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(393), 25, - anon_sym_RBRACE, - anon_sym_DOT, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26417] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, sym_float, + ACTIONS(1174), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28147] = 5, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26528] = 30, ACTIONS(3), 1, sym_module_comment, - ACTIONS(409), 1, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + ACTIONS(1176), 1, + anon_sym_RPAREN, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(264), 24, - anon_sym_RBRACE, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26639] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1178), 1, sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28197] = 5, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(622), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26747] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1007), 1, - anon_sym_LPAREN, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 11, + ACTIONS(1180), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1184), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(419), 24, + ACTIONS(710), 15, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28604,88 +30791,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28247] = 5, + [26819] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(411), 1, - anon_sym_DOT, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1194), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(264), 24, - anon_sym_RBRACE, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(821), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [26927] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(93), 1, sym_float, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28297] = 5, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(810), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27035] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 11, + ACTIONS(708), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, sym__decimal, - sym__discard_name, sym__name, - ACTIONS(264), 24, + ACTIONS(706), 26, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, @@ -28704,1402 +31002,1948 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, + anon_sym_LT_GT, anon_sym_DQUOTE, sym_float, sym__hex, sym__octal, sym__binary, sym__upname, - [28347] = 4, + [27093] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(521), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(519), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1196), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28394] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(820), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27201] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(621), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(619), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1198), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28441] = 8, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(717), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27309] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(539), 19, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1200), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28496] = 14, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(817), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27417] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1019), 1, - anon_sym_AMP_AMP, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(497), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(495), 10, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1202), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28563] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(814), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27525] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(529), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(527), 24, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, anon_sym_POUND, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1204), 1, + anon_sym_GT_GT, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28610] = 4, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27637] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(525), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(523), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1216), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28657] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(813), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27745] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(445), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(443), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1218), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28704] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(808), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27853] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(651), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(649), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - [28751] = 4, - ACTIONS(3), 1, - sym_module_comment, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1220), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(493), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(491), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, - sym_float, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28798] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(807), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [27961] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(657), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(655), 24, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, anon_sym_POUND, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, sym_float, + ACTIONS(1222), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28845] = 14, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28073] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1019), 1, - anon_sym_AMP_AMP, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1031), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1029), 10, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1224), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28912] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(915), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28181] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(603), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(601), 24, - anon_sym_RBRACE, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, anon_sym_POUND, + ACTIONS(1052), 1, anon_sym_LBRACK, + ACTIONS(1054), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1228), 1, sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [28959] = 4, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(111), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28289] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(607), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(605), 24, - anon_sym_RBRACE, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, anon_sym_POUND, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1230), 1, sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29006] = 4, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(509), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28397] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(611), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(609), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1232), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29053] = 4, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(954), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28505] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(617), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(615), 24, - anon_sym_RBRACE, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, anon_sym_POUND, + ACTIONS(1052), 1, anon_sym_LBRACK, + ACTIONS(1054), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1234), 1, sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29100] = 4, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(110), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28613] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(489), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(487), 24, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - [29147] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(637), 11, - anon_sym_SLASH, + ACTIONS(816), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(635), 24, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DQUOTE, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1236), 1, sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [29194] = 9, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 7, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(539), 18, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_DQUOTE, - sym_float, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29251] = 14, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(991), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28721] = 31, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1019), 1, - anon_sym_AMP_AMP, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1035), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1033), 10, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, anon_sym_POUND, + ACTIONS(417), 1, anon_sym_LBRACK, + ACTIONS(419), 1, anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, sym_float, + ACTIONS(1238), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1509), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29318] = 11, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28833] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(541), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(539), 14, - anon_sym_RBRACE, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, anon_sym_POUND, + ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(25), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1240), 1, sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29379] = 4, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(143), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [28941] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(661), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(659), 24, - anon_sym_RBRACE, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1242), 1, sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29426] = 4, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(609), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29049] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(647), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(645), 24, - anon_sym_RBRACE, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1244), 1, sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29473] = 4, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(608), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29157] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(541), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(539), 24, - anon_sym_RBRACE, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1246), 1, sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29520] = 6, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(602), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29265] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 9, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(539), 21, - anon_sym_RBRACE, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1248), 1, sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29571] = 4, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(591), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29373] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(671), 11, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(669), 24, - anon_sym_RBRACE, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, anon_sym_POUND, + ACTIONS(23), 1, anon_sym_LBRACK, + ACTIONS(25), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, sym__upname, - [29618] = 12, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1250), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(541), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(539), 12, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_DQUOTE, - sym_float, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29681] = 13, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(152), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29481] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1019), 1, - anon_sym_AMP_AMP, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(541), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(539), 11, - anon_sym_RBRACE, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_PIPE_PIPE, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, sym__upname, - [29746] = 14, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1019), 1, - anon_sym_AMP_AMP, - ACTIONS(1027), 1, - anon_sym_PIPE_GT, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1252), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1009), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1013), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1021), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(665), 3, - sym__decimal, - sym__discard_name, - sym__name, - ACTIONS(1015), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1023), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1025), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(663), 10, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_DQUOTE, - sym_float, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - [29813] = 6, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(992), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29589] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1041), 1, - anon_sym_SLASH, - STATE(357), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1037), 13, - ts_builtin_sym_end, + ACTIONS(189), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, anon_sym_POUND, + ACTIONS(1094), 1, anon_sym_LBRACK, + ACTIONS(1096), 1, anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, anon_sym_BANG, + ACTIONS(1104), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1039), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(1110), 1, sym__decimal, + ACTIONS(1112), 1, sym__name, - [29861] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1048), 1, - anon_sym_SLASH, - STATE(360), 1, - aux_sym_module_repeat1, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1254), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1044), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1046), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [29909] = 6, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(598), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29697] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1050), 1, - anon_sym_LPAREN, - STATE(385), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(256), 9, - anon_sym_DOT, + ACTIONS(716), 20, + anon_sym_as, anon_sym_SLASH, anon_sym_DASH, + anon_sym_fn, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(254), 21, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(714), 26, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30114,165 +32958,28022 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [29957] = 6, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [29755] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1048), 1, - anon_sym_SLASH, - STATE(357), 1, - aux_sym_module_repeat1, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1052), 13, - ts_builtin_sym_end, + ACTIONS(71), 1, anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(73), 1, anon_sym_POUND, + ACTIONS(75), 1, anon_sym_LBRACK, + ACTIONS(77), 1, anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1256), 1, sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1054), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(997), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [29863] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, anon_sym_fn, - anon_sym_try, + ACTIONS(193), 1, anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, sym__decimal, + ACTIONS(1112), 1, sym__name, - [30005] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1060), 1, - anon_sym_size, - ACTIONS(1066), 1, - anon_sym_unit, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1258), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1056), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(991), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(637), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30062] = 11, + [29971] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1070), 1, - anon_sym_size, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1260), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1068), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1018), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(635), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30119] = 4, + [30079] = 29, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(355), 9, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1262), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(160), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30187] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1264), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(97), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30295] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1266), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(156), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30403] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1268), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(155), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30511] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1270), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(154), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30619] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1272), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(150), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30727] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1274), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(132), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30835] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1276), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(510), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [30943] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1278), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(527), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31051] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1280), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1024), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31159] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1282), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31271] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1224), 1, + sym_float, + ACTIONS(1284), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(915), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31379] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1287), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(526), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31487] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(225), 1, + sym_float, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(961), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31595] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1289), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31707] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1291), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(993), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31815] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1293), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(950), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [31923] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1295), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(131), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32031] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1297), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1006), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32139] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1299), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1018), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32247] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(896), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(848), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32355] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1301), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(995), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32463] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1224), 1, + sym_float, + ACTIONS(1303), 1, + anon_sym_LBRACE, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(915), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32571] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1306), 1, + anon_sym_as, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(726), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(728), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [32651] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1314), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1532), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32763] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1316), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1009), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32871] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1318), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1437), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [32983] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1320), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33095] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1322), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(620), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33203] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1324), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(975), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33311] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1326), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(511), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33419] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1328), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(970), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33527] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1330), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(957), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33635] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1332), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1022), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33743] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(652), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(650), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33801] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1334), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(958), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [33909] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(742), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(740), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [33967] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1336), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(959), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34075] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1338), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(966), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34183] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1340), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(968), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34291] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1342), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(969), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34399] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1344), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(944), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34507] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(758), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(756), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34565] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(762), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(760), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34623] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(772), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(770), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [34681] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1346), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1564), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34793] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1348), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [34905] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1350), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(941), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35013] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1352), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(130), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35121] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1354), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(629), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35229] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(732), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35287] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(694), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35345] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(720), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(718), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35403] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(684), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(682), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [35461] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1356), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(133), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35569] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1358), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(100), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35677] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1360), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35789] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1362), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(104), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [35897] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1364), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(145), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36005] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1366), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36117] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36175] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 16, + anon_sym_as, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36241] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1368), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(939), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36349] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 16, + anon_sym_as, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36417] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1370), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36529] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36603] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(712), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [36679] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 18, + anon_sym_as, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36741] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [36799] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1372), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(518), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [36907] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(658), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(660), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [36985] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(722), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(724), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [37063] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1374), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37175] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(752), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [37233] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1376), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(938), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37341] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1378), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(937), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37449] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(738), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(736), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [37507] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1380), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(127), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37615] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1382), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1411), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37727] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1384), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(525), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37835] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1388), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(391), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [37943] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1390), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1001), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38051] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1392), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(148), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38159] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1394), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(431), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38267] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1396), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(126), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38375] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1398), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(601), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38483] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1400), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(336), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38591] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1402), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(433), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38699] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1404), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(125), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38807] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1406), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(434), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [38915] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1408), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(435), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39023] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1410), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(436), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39131] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1412), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(936), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39239] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(654), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [39297] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1414), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(159), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39405] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(702), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(704), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [39483] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(698), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [39541] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(767), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(764), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [39599] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(686), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [39657] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1416), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(106), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39765] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(692), 20, + anon_sym_as, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(690), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [39823] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1418), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [39935] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1420), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(120), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40043] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1422), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(524), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40151] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1424), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(523), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40259] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1426), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(517), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40367] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1428), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(912), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40475] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1430), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40587] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1432), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(978), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40695] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1434), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(502), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40803] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1436), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(493), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [40911] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1438), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(157), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41019] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1440), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(981), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41127] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1442), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(463), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41235] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1444), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(985), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41343] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1446), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1536), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41455] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1448), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(522), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41563] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1450), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(967), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41671] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1452), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(996), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41779] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1454), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(998), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41887] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1456), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1000), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [41995] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1458), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1002), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42103] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1460), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1003), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42211] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1462), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1007), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42319] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1464), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1010), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42427] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(744), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(746), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [42505] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1466), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1008), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42613] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1468), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42725] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1470), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(947), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42833] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1472), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [42945] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1474), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(512), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43053] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1476), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(513), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43161] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1478), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(514), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43269] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1480), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1016), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43377] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1188), 1, + anon_sym_PIPE_GT, + ACTIONS(1308), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1310), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1180), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1182), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1190), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1184), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1186), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1192), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(748), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(750), 12, + anon_sym_as, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [43455] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1482), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1017), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43563] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1484), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1019), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43671] = 31, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + ACTIONS(1486), 1, + anon_sym_GT_GT, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1600), 1, + sym_expression_bit_string_segment, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43783] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(243), 1, + sym_float, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(913), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43891] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1488), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(516), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [43999] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1198), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(717), 12, + sym__expression, + sym_binary_expression, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [44107] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(722), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(724), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [44184] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(658), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(660), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [44261] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(794), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(796), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [44338] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44395] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 17, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44456] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 12, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44531] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(798), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(800), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [44608] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 13, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44681] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 15, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44752] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 15, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44819] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 15, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 20, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44884] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 19, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_fn, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + ACTIONS(710), 26, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [44941] = 30, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1214), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1727), 1, + sym_expression_bit_string_segment, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(1434), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45050] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(702), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(704), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45127] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(748), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(750), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45204] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(802), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(804), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45281] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(806), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(808), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45358] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(810), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(812), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45435] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1496), 1, + anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1490), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1492), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1506), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1500), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1502), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1508), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(744), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(746), 11, + anon_sym_fn, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + anon_sym_BANG, + sym__decimal, + sym__name, + [45512] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1510), 1, + sym_float, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(461), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45618] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1512), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(229), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45724] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1514), 1, + sym_float, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(129), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45830] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1516), 1, + sym_float, + ACTIONS(1520), 1, + sym__decimal, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(1518), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(732), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [45936] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(235), 1, + anon_sym_todo, + ACTIONS(237), 1, + anon_sym_panic, + ACTIONS(239), 1, + anon_sym_echo, + ACTIONS(958), 1, + anon_sym_DASH, + ACTIONS(962), 1, + anon_sym_BANG, + ACTIONS(1522), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(707), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46042] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1522), 1, + sym_float, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(707), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46148] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(1014), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_LBRACK, + ACTIONS(1018), 1, + anon_sym_LT_LT, + ACTIONS(1020), 1, + anon_sym_DASH, + ACTIONS(1022), 1, + anon_sym_fn, + ACTIONS(1024), 1, + anon_sym_todo, + ACTIONS(1026), 1, + anon_sym_panic, + ACTIONS(1030), 1, + anon_sym_case, + ACTIONS(1032), 1, + anon_sym_BANG, + ACTIONS(1034), 1, + anon_sym_DQUOTE, + ACTIONS(1042), 1, + sym__name, + ACTIONS(1044), 1, + sym__upname, + ACTIONS(1386), 1, + anon_sym_echo, + ACTIONS(1524), 1, + sym_float, + ACTIONS(1528), 1, + sym__decimal, + STATE(249), 1, + sym_identifier, + STATE(311), 1, + sym_anonymous_function, + STATE(312), 1, + sym_tuple, + STATE(1638), 1, + sym__maybe_function_expression, + STATE(1820), 1, + sym__maybe_record_expression, + STATE(1825), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(222), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(319), 2, + sym_record, + sym_record_update, + ACTIONS(1526), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(248), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(464), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46254] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(421), 1, + anon_sym_DASH, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(425), 1, + anon_sym_todo, + ACTIONS(427), 1, + anon_sym_panic, + ACTIONS(429), 1, + anon_sym_echo, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(439), 1, + anon_sym_BANG, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1530), 1, + sym_float, + ACTIONS(1534), 1, + sym__decimal, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1826), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(1532), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(251), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46360] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1512), 1, + sym_float, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(229), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46466] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1536), 1, + sym_float, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(999), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46572] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, + anon_sym_POUND, + ACTIONS(75), 1, + anon_sym_LBRACK, + ACTIONS(77), 1, + anon_sym_LT_LT, + ACTIONS(79), 1, + anon_sym_fn, + ACTIONS(81), 1, + anon_sym_todo, + ACTIONS(83), 1, + anon_sym_panic, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(87), 1, + anon_sym_case, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(816), 1, + anon_sym_DASH, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(1516), 1, + sym_float, + ACTIONS(1520), 1, + sym__decimal, + STATE(649), 1, + sym_identifier, + STATE(681), 1, + sym_tuple, + STATE(685), 1, + sym_anonymous_function, + STATE(1682), 1, + sym__maybe_function_expression, + STATE(1796), 1, + sym__maybe_record_expression, + STATE(1821), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(642), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(679), 2, + sym_record, + sym_record_update, + ACTIONS(1518), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(644), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(732), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46678] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1538), 1, + sym_float, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1108), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(595), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46784] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(85), 1, + anon_sym_echo, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(415), 1, + anon_sym_POUND, + ACTIONS(417), 1, + anon_sym_LBRACK, + ACTIONS(419), 1, + anon_sym_LT_LT, + ACTIONS(423), 1, + anon_sym_fn, + ACTIONS(431), 1, + anon_sym_case, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(1206), 1, + anon_sym_DASH, + ACTIONS(1208), 1, + anon_sym_todo, + ACTIONS(1210), 1, + anon_sym_panic, + ACTIONS(1212), 1, + anon_sym_BANG, + ACTIONS(1530), 1, + sym_float, + ACTIONS(1534), 1, + sym__decimal, + STATE(211), 1, + sym_identifier, + STATE(218), 1, + sym_tuple, + STATE(220), 1, + sym_anonymous_function, + STATE(1653), 1, + sym__maybe_function_expression, + STATE(1762), 1, + sym__maybe_record_expression, + STATE(1766), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(187), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(214), 2, + sym_record, + sym_record_update, + ACTIONS(1532), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(202), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(251), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46890] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1540), 1, + sym_float, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(85), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [46996] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + anon_sym_POUND, + ACTIONS(207), 1, + anon_sym_LBRACK, + ACTIONS(209), 1, + anon_sym_LT_LT, + ACTIONS(211), 1, + anon_sym_fn, + ACTIONS(213), 1, + anon_sym_todo, + ACTIONS(215), 1, + anon_sym_panic, + ACTIONS(217), 1, + anon_sym_echo, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(968), 1, + anon_sym_DASH, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1542), 1, + sym_float, + ACTIONS(1546), 1, + sym__decimal, + STATE(862), 1, + sym_identifier, + STATE(933), 1, + sym_tuple, + STATE(935), 1, + sym_anonymous_function, + STATE(1718), 1, + sym__maybe_function_expression, + STATE(1760), 1, + sym__maybe_tuple_expression, + STATE(1842), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(856), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(931), 2, + sym_record, + sym_record_update, + ACTIONS(1544), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(873), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(962), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [47102] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(1050), 1, + anon_sym_POUND, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_LT_LT, + ACTIONS(1056), 1, + anon_sym_DASH, + ACTIONS(1058), 1, + anon_sym_fn, + ACTIONS(1060), 1, + anon_sym_todo, + ACTIONS(1062), 1, + anon_sym_panic, + ACTIONS(1066), 1, + anon_sym_case, + ACTIONS(1068), 1, + anon_sym_BANG, + ACTIONS(1070), 1, + anon_sym_DQUOTE, + ACTIONS(1078), 1, + sym__name, + ACTIONS(1080), 1, + sym__upname, + ACTIONS(1226), 1, + anon_sym_echo, + ACTIONS(1548), 1, + sym_float, + ACTIONS(1552), 1, + sym__decimal, + STATE(27), 1, + sym_identifier, + STATE(76), 1, + sym_tuple, + STATE(78), 1, + sym_anonymous_function, + STATE(1608), 1, + sym__maybe_function_expression, + STATE(1809), 1, + sym__maybe_record_expression, + STATE(1876), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(14), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(69), 2, + sym_record, + sym_record_update, + ACTIONS(1550), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(26), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(95), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [47208] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LT_LT, + ACTIONS(27), 1, + anon_sym_DASH, + ACTIONS(33), 1, + anon_sym_todo, + ACTIONS(35), 1, + anon_sym_panic, + ACTIONS(37), 1, + anon_sym_echo, + ACTIONS(39), 1, + anon_sym_case, + ACTIONS(47), 1, + anon_sym_BANG, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(1154), 1, + anon_sym_fn, + ACTIONS(1554), 1, + sym_float, + ACTIONS(1558), 1, + sym__decimal, + STATE(74), 1, + sym_identifier, + STATE(91), 1, + sym_anonymous_function, + STATE(92), 1, + sym_tuple, + STATE(1652), 1, + sym__maybe_function_expression, + STATE(1862), 1, + sym__maybe_record_expression, + STATE(1863), 1, + sym__maybe_tuple_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(39), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(93), 2, + sym_record, + sym_record_update, + ACTIONS(1556), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(81), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(162), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [47314] = 29, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_fn, + ACTIONS(193), 1, + anon_sym_todo, + ACTIONS(195), 1, + anon_sym_panic, + ACTIONS(197), 1, + anon_sym_echo, + ACTIONS(199), 1, + anon_sym_case, + ACTIONS(1092), 1, + anon_sym_POUND, + ACTIONS(1094), 1, + anon_sym_LBRACK, + ACTIONS(1096), 1, + anon_sym_LT_LT, + ACTIONS(1098), 1, + anon_sym_DASH, + ACTIONS(1102), 1, + anon_sym_BANG, + ACTIONS(1104), 1, + anon_sym_DQUOTE, + ACTIONS(1112), 1, + sym__name, + ACTIONS(1114), 1, + sym__upname, + ACTIONS(1560), 1, + sym_float, + ACTIONS(1564), 1, + sym__decimal, + STATE(563), 1, + sym_identifier, + STATE(585), 1, + sym_tuple, + STATE(588), 1, + sym_anonymous_function, + STATE(1678), 1, + sym__maybe_function_expression, + STATE(1782), 1, + sym__maybe_tuple_expression, + STATE(1831), 1, + sym__maybe_record_expression, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(555), 2, + sym_constructor_name, + sym_remote_constructor_name, + STATE(584), 2, + sym_record, + sym_record_update, + ACTIONS(1562), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(562), 5, + sym_block, + sym_case, + sym_tuple_access, + sym_field_access, + sym_function_call, + STATE(621), 10, + sym__expression_unit, + sym_todo, + sym_panic, + sym_echo, + sym_list, + sym__expression_bit_string, + sym_boolean_negation, + sym_integer_negation, + sym_string, + sym_integer, + [47420] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(474), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47475] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(482), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47530] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(409), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(407), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47585] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(405), 10, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(403), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47640] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(385), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(383), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47693] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(716), 9, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(714), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47746] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(393), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(391), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47799] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(512), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47852] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(708), 9, + anon_sym_SLASH, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(706), 32, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + sym_visibility_modifier, + sym_opacity_modifier, + [47905] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1566), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(373), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [47960] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1568), 1, + anon_sym_LPAREN, + ACTIONS(1570), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(600), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(598), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48014] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(528), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(526), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48064] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(512), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48114] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1574), 1, + anon_sym_LPAREN, + STATE(599), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1576), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1572), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [48168] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(401), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(399), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48218] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(524), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(522), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48268] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(459), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48322] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(1578), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(459), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48376] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(381), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(379), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48426] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(385), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(383), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48476] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(453), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48526] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(387), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48576] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(504), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48626] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1582), 1, + anon_sym_LPAREN, + ACTIONS(1584), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(618), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(616), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48680] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(397), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(395), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48730] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(510), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(508), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48780] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(405), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(403), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48830] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(496), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(494), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48880] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(409), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(407), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48930] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(482), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [48980] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(474), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49030] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(393), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(391), 27, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49080] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(628), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(626), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49129] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(608), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(606), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49178] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(614), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(612), 26, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49227] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(632), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(630), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49276] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(592), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(590), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49325] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(636), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(634), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49374] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(642), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(459), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49425] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(648), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(459), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49476] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(640), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(638), 26, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49525] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(596), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(594), 26, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49574] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(459), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49625] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1588), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1586), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [49673] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 7, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(710), 19, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49729] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(712), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 11, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49795] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1610), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1608), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [49843] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1614), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1612), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [49891] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1618), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1616), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [49939] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(654), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [49987] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(708), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(706), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50035] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(652), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(650), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50083] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(710), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50131] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1622), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1620), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50179] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1626), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1624), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50227] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(1630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1632), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1628), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50295] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(712), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 12, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50359] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1636), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1634), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50407] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1640), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1638), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50455] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(742), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(740), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50503] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(692), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(690), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50551] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1644), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1642), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50599] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 14, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50661] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 7, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(710), 18, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50719] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1648), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1646), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50767] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(686), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50815] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(710), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50863] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1652), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1650), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [50911] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(758), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(756), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [50959] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1656), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1654), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51007] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(762), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(760), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51055] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1660), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1658), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51103] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(772), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(770), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51151] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(716), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(714), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51199] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(1630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(704), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(702), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51267] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(698), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51315] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 9, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(710), 21, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51367] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1664), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1662), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51415] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(732), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51463] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(694), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51511] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(720), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(718), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51559] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1668), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1666), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51607] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(684), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(682), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51655] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(1630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1672), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(1670), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51723] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1676), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1674), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51771] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(738), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(736), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51819] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(752), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51867] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(767), 11, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(764), 25, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [51915] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1680), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1678), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [51963] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(1630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(724), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(722), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [52031] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1684), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1682), 28, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + sym_visibility_modifier, + sym_opacity_modifier, + [52079] = 14, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1598), 1, + anon_sym_AMP_AMP, + ACTIONS(1606), 1, + anon_sym_PIPE_GT, + ACTIONS(1630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1590), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1594), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(1600), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(660), 3, + sym__decimal, + sym__discard_name, + sym__name, + ACTIONS(1596), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(1602), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(1604), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(658), 10, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + [52147] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1690), 1, + anon_sym_SLASH, + STATE(638), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1686), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1688), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52198] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1697), 1, + anon_sym_SLASH, + STATE(638), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1693), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1695), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52249] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1697), 1, + anon_sym_SLASH, + STATE(639), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1699), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1701), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52300] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(672), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1703), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1705), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52350] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1709), 1, + anon_sym_LPAREN, + STATE(702), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(373), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52400] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1686), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_DOT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1688), 20, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_SLASH, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52446] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(1711), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52495] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1714), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1716), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52540] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(389), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(387), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52585] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(397), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(395), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52630] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(401), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(399), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52675] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(1718), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52724] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(504), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52769] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1726), 1, + anon_sym_LPAREN, + STATE(749), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1722), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1724), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52818] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1728), 1, + anon_sym_LPAREN, + STATE(711), 1, + sym_constant_record_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1572), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1576), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52867] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(496), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(494), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [52912] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1734), 1, + anon_sym_LPAREN, + STATE(778), 1, + sym__attribute_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1730), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1732), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [52961] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + anon_sym_DASH_GT, + STATE(705), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1736), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1738), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53012] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1742), 15, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1744), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53057] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1750), 1, + anon_sym_DOT, + ACTIONS(1752), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1746), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1748), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53106] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(528), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(526), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53151] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(510), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(508), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53196] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(1758), 1, + anon_sym_DASH_GT, + STATE(782), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1754), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1756), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53247] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(381), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(379), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53292] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(524), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(522), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53337] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(455), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(453), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53382] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1760), 1, + anon_sym_LPAREN, + ACTIONS(1762), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(600), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(598), 22, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [53430] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1768), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1764), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1766), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53476] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1770), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1772), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53520] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1774), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1776), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53564] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1778), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1780), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53608] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1786), 1, + anon_sym_LBRACE, + ACTIONS(1788), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1782), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1784), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53656] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1790), 1, + anon_sym_RBRACE, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1755), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [53740] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1814), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1799), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [53824] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1816), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1818), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [53868] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1820), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1834), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [53952] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1822), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1780), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [54036] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(788), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1824), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1826), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54084] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1828), 1, + anon_sym_LPAREN, + ACTIONS(1830), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(618), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(616), 22, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54132] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1836), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1832), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1834), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54178] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1838), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1886), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [54262] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54308] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1846), 1, + anon_sym_LBRACE, + ACTIONS(1848), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1842), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1844), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54356] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1850), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54402] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1852), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1854), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54446] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1856), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1874), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [54530] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1858), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1860), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54574] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54620] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1866), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1862), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1864), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54666] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1868), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1870), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54710] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(482), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1872), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1874), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54756] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1876), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1878), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54800] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1880), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + STATE(1788), 1, + sym_case_clauses, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(726), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [54884] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1882), 12, + ts_builtin_sym_end, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1884), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [54932] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(628), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(626), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [54976] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(608), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(606), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55020] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1886), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1888), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55064] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(596), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(594), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55108] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1890), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1892), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55152] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(636), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(634), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55196] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(632), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(630), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55240] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1894), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_DASH_GT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1896), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55284] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1898), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1900), 19, + anon_sym_if, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55328] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(614), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(612), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55372] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(640), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(638), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55416] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(592), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(590), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55460] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1902), 14, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1904), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55504] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1906), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1908), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55547] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1910), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1912), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55590] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(656), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(654), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55633] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1914), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1916), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55676] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1918), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1920), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55719] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(738), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(736), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55762] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1620), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1622), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55805] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1678), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1680), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55848] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1682), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1684), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55891] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(754), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(752), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [55934] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1922), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1924), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [55977] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1926), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1928), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56020] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(710), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56063] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(712), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(710), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56106] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1930), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1932), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56149] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1934), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1936), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56192] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(684), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(682), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56235] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(720), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(718), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56278] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(696), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(694), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56321] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(734), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(732), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56364] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1938), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1940), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56407] = 23, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(1942), 1, + anon_sym_RBRACE, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(772), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [56488] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(772), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(770), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56531] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1944), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1946), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56574] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(762), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(760), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56617] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1638), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1640), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56660] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(758), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(756), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56703] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(700), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(698), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56746] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(767), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(764), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56789] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1948), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1950), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [56832] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(742), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(740), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56875] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(652), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(650), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [56918] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1956), 1, + anon_sym_size, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1952), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1535), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [56975] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1666), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1668), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57018] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1964), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1966), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57061] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1968), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1970), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57104] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1662), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1664), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57147] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1972), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1974), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57190] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1976), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1978), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57233] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1980), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1982), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57276] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1658), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1660), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57319] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1984), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1986), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57362] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1586), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1588), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57405] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1988), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1990), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57448] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1992), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1994), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57491] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1996), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1998), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57534] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1642), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1644), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57577] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2000), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2002), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57620] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2004), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2006), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57663] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2008), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2010), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57706] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2012), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2014), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [57749] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(688), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(686), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57792] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2016), 1, + anon_sym_RPAREN, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2020), 1, + anon_sym_DOT_DOT, + ACTIONS(2022), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1427), 1, + sym_record_pattern_argument, + STATE(1538), 1, + sym__pattern, + STATE(1797), 1, + sym_pattern_spread, + STATE(1828), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [57875] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(692), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(690), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [57918] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2026), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2024), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1520), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [57975] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2028), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2030), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58018] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2034), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2032), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1443), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [58075] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2036), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2038), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58118] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1654), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1656), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58161] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1646), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1648), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58204] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1616), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1618), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58247] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2020), 1, + anon_sym_DOT_DOT, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2040), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1332), 1, + sym_record_pattern_argument, + STATE(1538), 1, + sym__pattern, + STATE(1823), 1, + sym_pattern_spread, + STATE(1828), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [58330] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1624), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1626), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58373] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2042), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2044), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58416] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1956), 1, + anon_sym_size, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2046), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1535), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [58473] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2048), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2050), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58516] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1842), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1844), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58559] = 23, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2052), 1, + anon_sym_RBRACE, + ACTIONS(2054), 1, + anon_sym_POUND, + ACTIONS(2057), 1, + anon_sym_LBRACK, + ACTIONS(2060), 1, + anon_sym_LT_LT, + ACTIONS(2063), 1, + anon_sym_DASH, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2069), 1, + sym_float, + ACTIONS(2075), 1, + sym__decimal, + ACTIONS(2078), 1, + sym__discard_name, + ACTIONS(2081), 1, + sym__name, + ACTIONS(2084), 1, + sym__upname, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1360), 1, + sym_case_clause_pattern, + STATE(1511), 1, + sym_case_clause_patterns, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(772), 2, + sym_case_clause, + aux_sym_case_clauses_repeat1, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(2072), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [58640] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2034), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2087), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1443), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [58697] = 24, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2020), 1, + anon_sym_DOT_DOT, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2089), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1427), 1, + sym_record_pattern_argument, + STATE(1538), 1, + sym__pattern, + STATE(1828), 1, + sym_label, + STATE(1858), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [58780] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1608), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1610), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58823] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1674), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1676), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58866] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2091), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2093), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58909] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2095), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2097), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58952] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2099), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2101), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [58995] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2103), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2105), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59038] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1650), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1652), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59081] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2107), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2109), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59124] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2111), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2113), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59167] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2115), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2117), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59210] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1612), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1614), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59253] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1634), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(1636), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59296] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2119), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2121), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59339] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2123), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2125), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59382] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2127), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2129), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59425] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2131), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2133), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59468] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2026), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2135), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1520), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [59525] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2137), 13, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_AT, + anon_sym_POUND, + anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_BANG, + anon_sym_DQUOTE, + sym_float, + sym__hex, + sym__octal, + sym__binary, + sym__upname, + ACTIONS(2139), 18, + anon_sym_if, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_todo, + anon_sym_panic, + anon_sym_echo, + anon_sym_case, + anon_sym_let, + anon_sym_assert, + anon_sym_use, + sym_visibility_modifier, + sym_opacity_modifier, + sym__decimal, + sym__name, + [59568] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2151), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1049), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [59640] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2161), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1069), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [59712] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(381), 9, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PIPE, + ACTIONS(379), 21, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [59754] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2163), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1060), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [59826] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2165), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1045), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [59898] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2167), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1061), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [59970] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2169), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1039), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60042] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2171), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1078), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60114] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2034), 1, + anon_sym_size, + STATE(1721), 1, + sym_expression_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1384), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [60170] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2173), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1050), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60242] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2175), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1051), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60314] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 16, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_DOT_DOT, + [60364] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2185), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1067), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60436] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2187), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1068), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60508] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 15, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_DOT_DOT, + [60560] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 11, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_DOT_DOT, + [60614] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2195), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1052), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60686] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(702), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [60746] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(223), 1, + anon_sym_DQUOTE, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(231), 1, + sym__name, + ACTIONS(233), 1, + sym__upname, + ACTIONS(972), 1, + anon_sym_BANG, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(2153), 1, + anon_sym_LBRACE, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2203), 1, + sym_float, + STATE(1026), 1, + sym_identifier, + STATE(1079), 1, + sym__case_clause_guard_binary_expression, + STATE(1080), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1042), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [60818] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1956), 1, + anon_sym_size, + ACTIONS(1962), 1, + anon_sym_unit, + STATE(1642), 1, + sym_constant_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1366), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [60874] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 9, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_DOT_DOT, + [60930] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(710), 8, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_DOT_DOT, + [60988] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(391), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 9, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(482), 20, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [61032] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2205), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1043), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [61104] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 6, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + ACTIONS(710), 18, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_DOT_DOT, + [61150] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(820), 1, + anon_sym_BANG, + ACTIONS(2141), 1, + anon_sym_LBRACE, + ACTIONS(2143), 1, + anon_sym_POUND, + ACTIONS(2145), 1, + anon_sym_LBRACK, + ACTIONS(2147), 1, + anon_sym_LT_LT, + ACTIONS(2149), 1, + anon_sym_DASH, + ACTIONS(2207), 1, + sym_float, + STATE(1030), 1, + sym_identifier, + STATE(1040), 1, + sym__case_clause_guard_binary_expression, + STATE(1041), 1, + sym__case_clause_tuple_access, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(979), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1054), 11, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym__case_clause_guard_expression, + sym__case_clause_guard_unit, + sym_boolean_negation, + sym_string, + sym_integer, + [61222] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2026), 1, + anon_sym_size, + STATE(1670), 1, + sym_pattern_bit_string_segment_options, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1379), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [61278] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(658), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [61338] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(722), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [61398] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2034), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1443), 5, + sym__expression_bit_string_segment_option, + sym__expression_bit_string_named_segment_option, + sym__expression_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [61451] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1425), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(2209), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61524] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2211), 1, + anon_sym_RBRACK, + ACTIONS(2213), 1, + anon_sym_DOT_DOT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + STATE(1851), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61601] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2213), 1, + anon_sym_DOT_DOT, + ACTIONS(2215), 1, + anon_sym_RBRACK, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1337), 1, + sym__pattern, + STATE(1879), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61678] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2217), 1, + anon_sym_if, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2219), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61753] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1956), 1, + anon_sym_size, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1535), 5, + sym__constant_bit_string_segment_option, + sym__constant_bit_string_named_segment_option, + sym__constant_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [61806] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2221), 1, + anon_sym_if, + ACTIONS(2223), 1, + anon_sym_DASH_GT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1432), 1, + sym_case_clause_pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61883] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2225), 1, + anon_sym_if, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2227), 2, + anon_sym_DASH_GT, + anon_sym_PIPE, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [61958] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2229), 1, + anon_sym_if, + ACTIONS(2231), 1, + anon_sym_DASH_GT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1432), 1, + sym_case_clause_pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62035] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2233), 1, + anon_sym_LT_DASH, + ACTIONS(2235), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1382), 1, + sym__pattern, + STATE(1492), 1, + sym_use_assignment, + STATE(1756), 1, + sym_use_assignments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1350), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62112] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2213), 1, + anon_sym_DOT_DOT, + ACTIONS(2237), 1, + anon_sym_RBRACK, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + STATE(1752), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62189] = 22, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2235), 1, + sym_float, + ACTIONS(2239), 1, + anon_sym_LT_DASH, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1382), 1, + sym__pattern, + STATE(1492), 1, + sym_use_assignment, + STATE(1877), 1, + sym_use_assignments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1350), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62266] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(1962), 1, + anon_sym_unit, + ACTIONS(2026), 1, + anon_sym_size, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + ACTIONS(1960), 3, + anon_sym_utf8, + anon_sym_utf16, + anon_sym_utf32, + STATE(1520), 5, + sym__pattern_bit_string_segment_option, + sym__pattern_bit_string_named_segment_option, + sym__pattern_bit_string_segment_option_size, + sym_integer, + sym__bit_string_segment_option, + ACTIONS(1958), 14, + anon_sym_binary, + anon_sym_bytes, + anon_sym_int, + anon_sym_float, + anon_sym_bit_string, + anon_sym_bits, + anon_sym_utf8_codepoint, + anon_sym_utf16_codepoint, + anon_sym_utf32_codepoint, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_big, + anon_sym_little, + anon_sym_native, + [62319] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2241), 1, + anon_sym_GT_GT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1515), 1, + sym__pattern, + STATE(1583), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62393] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2243), 1, + anon_sym_GT_GT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1515), 1, + sym__pattern, + STATE(1672), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62467] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2235), 1, + sym_float, + ACTIONS(2245), 1, + anon_sym_LT_DASH, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1382), 1, + sym__pattern, + STATE(1666), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1350), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62541] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2247), 1, + anon_sym_GT_GT, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1515), 1, + sym__pattern, + STATE(1672), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62615] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1427), 1, + sym_record_pattern_argument, + STATE(1538), 1, + sym__pattern, + STATE(1828), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62689] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2235), 1, + sym_float, + ACTIONS(2249), 1, + anon_sym_LT_DASH, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1382), 1, + sym__pattern, + STATE(1666), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1350), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62763] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2251), 1, + anon_sym_assert, + STATE(783), 1, + sym__assignment, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1527), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62837] = 21, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2253), 1, + anon_sym_assert, + STATE(1031), 1, + sym__assignment, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1414), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [62911] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2255), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_RBRACK, + ACTIONS(2259), 1, + anon_sym_DOT_DOT, + STATE(1389), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [62974] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2261), 1, + anon_sym_COMMA, + ACTIONS(2263), 1, + anon_sym_RBRACK, + ACTIONS(2265), 1, + anon_sym_DOT_DOT, + STATE(1380), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [63037] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2267), 1, + anon_sym_COMMA, + ACTIONS(2269), 1, + anon_sym_RBRACK, + ACTIONS(2271), 1, + anon_sym_DOT_DOT, + STATE(1354), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [63100] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_RBRACK, + ACTIONS(2277), 1, + anon_sym_DOT_DOT, + STATE(1399), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [63163] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(1015), 1, + sym__assignment, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1603), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63234] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2279), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [63291] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1515), 1, + sym__pattern, + STATE(1672), 1, + sym_pattern_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63362] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2281), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63433] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1828), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(618), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(616), 17, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [63476] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1760), 1, + anon_sym_LPAREN, + ACTIONS(2285), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(600), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(598), 17, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [63519] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2287), 1, + anon_sym_COMMA, + ACTIONS(2289), 1, + anon_sym_RBRACK, + ACTIONS(2291), 1, + anon_sym_DOT_DOT, + STATE(1397), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [63582] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2293), 1, + anon_sym_COMMA, + ACTIONS(2295), 1, + anon_sym_RBRACK, + ACTIONS(2297), 1, + anon_sym_DOT_DOT, + STATE(1377), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [63645] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2299), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63716] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2301), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(375), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(373), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [63759] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1345), 1, + sym__pattern, + STATE(1432), 1, + sym_case_clause_pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63830] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + ACTIONS(2303), 1, + anon_sym_RPAREN, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1521), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63901] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2235), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1382), 1, + sym__pattern, + STATE(1666), 1, + sym_use_assignment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1350), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [63972] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2305), 1, + anon_sym_COMMA, + ACTIONS(2307), 1, + anon_sym_RBRACK, + ACTIONS(2309), 1, + anon_sym_DOT_DOT, + STATE(1388), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [64035] = 20, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(677), 1, + sym__assignment, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1539), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [64106] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64148] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2315), 1, + anon_sym_RPAREN, + ACTIONS(2317), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [64214] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2319), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1578), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [64280] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2321), 1, + anon_sym_COMMA, + ACTIONS(2323), 1, + anon_sym_RPAREN, + STATE(1494), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [64340] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2325), 1, + anon_sym_RPAREN, + ACTIONS(2327), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1724), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [64406] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2331), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(600), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(598), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64448] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2335), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(618), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(616), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64490] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(476), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(353), 22, - anon_sym_LBRACE, + ACTIONS(474), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64528] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(484), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(482), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64566] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(409), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(407), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64604] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2337), 1, anon_sym_COMMA, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(1558), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [64664] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(463), 1, anon_sym_LPAREN, + ACTIONS(465), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64706] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2327), 1, + sym_float, + ACTIONS(2341), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + STATE(1322), 1, + sym_identifier, + STATE(1724), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [64772] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(385), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(383), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30287,15 +60988,492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30162] = 4, + anon_sym_LT_GT, + [64810] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(506), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(504), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64848] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(514), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(512), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64886] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2343), 1, + anon_sym_LBRACE, + ACTIONS(2345), 1, + anon_sym_COMMA, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, + STATE(1557), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2347), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2357), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2359), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [64946] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2367), 1, + anon_sym_COMMA, + ACTIONS(2369), 1, + anon_sym_RPAREN, + STATE(1523), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [65006] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2371), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65072] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2373), 1, + anon_sym_COMMA, + ACTIONS(2375), 1, + anon_sym_RPAREN, + STATE(1418), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [65132] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2377), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65198] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(393), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(391), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [65236] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2379), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1497), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65302] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2381), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65368] = 19, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1798), 1, + anon_sym_DASH, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1802), 1, + sym_float, + ACTIONS(1806), 1, + sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1296), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [65436] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(359), 9, - anon_sym_DOT, + ACTIONS(389), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30304,14 +61482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(357), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(387), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30326,100 +61500,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30205] = 11, + anon_sym_LT_GT, + [65474] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, sym__decimal, - ACTIONS(1058), 1, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, anon_sym_DASH, - ACTIONS(1060), 1, - anon_sym_size, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1072), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(991), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30262] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1037), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2327), 1, sym_float, + ACTIONS(2383), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1724), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1039), 18, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_SLASH, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [30305] = 4, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65540] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(339), 9, - anon_sym_DOT, + ACTIONS(397), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30428,14 +61564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(337), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(395), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30450,61 +61582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30348] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1070), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1074), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1018), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30405] = 4, + anon_sym_LT_GT, + [65578] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(383), 9, - anon_sym_DOT, + ACTIONS(401), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30513,14 +61598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(381), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(399), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30535,15 +61616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30448] = 4, + anon_sym_LT_GT, + [65616] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(262), 9, - anon_sym_DOT, + ACTIONS(405), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30552,14 +61632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(260), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(403), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30574,15 +61650,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30491] = 4, + anon_sym_LT_GT, + [65654] = 18, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2385), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1483), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(343), 9, - anon_sym_DOT, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65720] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2327), 1, + sym_float, + ACTIONS(2387), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1724), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [65786] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(496), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30591,14 +61762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(341), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(494), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30613,15 +61780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30534] = 4, + anon_sym_LT_GT, + [65824] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(375), 9, - anon_sym_DOT, + ACTIONS(510), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30630,14 +61796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(373), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(508), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30652,15 +61814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30577] = 4, + anon_sym_LT_GT, + [65862] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(319), 9, - anon_sym_DOT, + ACTIONS(524), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30669,14 +61830,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(317), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(522), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30691,59 +61848,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30620] = 6, + anon_sym_LT_GT, + [65900] = 19, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1076), 1, - anon_sym_DOT, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2022), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, + STATE(1284), 1, + sym__pattern, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1241), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [65968] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2389), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66034] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2391), 1, + anon_sym_COMMA, + ACTIONS(2393), 1, + anon_sym_RPAREN, + STATE(1447), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(2177), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(264), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [66094] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, anon_sym_AMP_AMP, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_RPAREN, + STATE(1551), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + [66154] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2399), 1, + anon_sym_COMMA, + ACTIONS(2401), 1, + anon_sym_RPAREN, + STATE(1591), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30667] = 6, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [66214] = 18, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + ACTIONS(2403), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66280] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(1079), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(528), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30752,13 +62144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(526), 18, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30773,15 +62162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30714] = 4, + anon_sym_LT_GT, + [66318] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(323), 9, - anon_sym_DOT, + ACTIONS(455), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30790,14 +62178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(321), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(453), 18, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30812,15 +62196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30757] = 4, + anon_sym_LT_GT, + [66356] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(275), 9, - anon_sym_DOT, + ACTIONS(596), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -30829,14 +62212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(273), 22, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(594), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -30851,206 +62229,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30800] = 11, + anon_sym_LT_GT, + [66393] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, sym__decimal, - ACTIONS(1058), 1, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1085), 1, - anon_sym_size, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2317), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1725), 1, + sym_constant_record_argument, + STATE(1753), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1083), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(910), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1731), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30857] = 11, + [66456] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, sym__decimal, - ACTIONS(1058), 1, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, + sym__name, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2018), 1, anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1085), 1, - anon_sym_size, + ACTIONS(2405), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1087), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(307), 3, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(910), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1187), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [30914] = 5, + sym_discard, + [66521] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1089), 1, - anon_sym_DOT, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2409), 1, + sym_float, + STATE(1322), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(264), 21, - anon_sym_LBRACE, + ACTIONS(2407), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [30958] = 11, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1733), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66582] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, sym__decimal, - ACTIONS(1058), 1, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1085), 1, - anon_sym_size, - STATE(1077), 1, - sym_pattern_bit_string_segment_options, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2411), 1, + anon_sym_GT_GT, + ACTIONS(2413), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(307), 3, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(903), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [31014] = 4, + [66645] = 8, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(431), 9, - anon_sym_DOT, + ACTIONS(2347), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(429), 21, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 11, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31060,59 +62451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31056] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1095), 1, - anon_sym_LPAREN, - STATE(446), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1091), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1093), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31102] = 4, + [66690] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(437), 8, + ACTIONS(628), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31121,14 +62466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(435), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(626), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31143,30 +62483,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31144] = 4, + anon_sym_LT_GT, + [66727] = 6, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(407), 9, - anon_sym_DOT, + ACTIONS(2347), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(712), 6, anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(405), 21, + ACTIONS(710), 13, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31178,64 +62519,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_GT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31186] = 11, + [66768] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1070), 1, - anon_sym_size, - STATE(1161), 1, - sym_constant_bit_string_segment_options, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(891), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [31242] = 5, + ACTIONS(702), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2347), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2357), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2359), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [66823] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(271), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, + ACTIONS(608), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31244,13 +62576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(264), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(606), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31265,91 +62593,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31286] = 4, + anon_sym_LT_GT, + [66860] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2279), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2347), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2357), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2359), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [66915] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2327), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1724), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [66978] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2327), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1441), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67041] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2413), 1, + sym_float, + ACTIONS(2415), 1, + anon_sym_GT_GT, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67104] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(427), 9, - anon_sym_DOT, + ACTIONS(2177), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(425), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, + ACTIONS(2181), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2417), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2183), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31328] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(415), 8, - anon_sym_SLASH, - anon_sym_DASH, + anon_sym_LT_GT, + ACTIONS(2191), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(413), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2193), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31370] = 4, + [67159] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(403), 9, - anon_sym_DOT, + ACTIONS(636), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31358,13 +62831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(401), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(634), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31379,131 +62848,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31412] = 4, + anon_sym_LT_GT, + [67196] = 17, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2413), 1, + sym_float, + ACTIONS(2419), 1, + anon_sym_GT_GT, + STATE(1322), 1, + sym_identifier, + STATE(1460), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(395), 9, - anon_sym_DOT, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67259] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(451), 1, + sym__upname, + ACTIONS(826), 1, + sym__name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2327), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1533), 1, + sym_attribute_value, + STATE(1812), 1, + sym_label, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1689), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67322] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2421), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(393), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2193), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31454] = 5, + [67377] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1097), 1, - anon_sym_DOT, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(1792), 1, + anon_sym_POUND, + ACTIONS(1794), 1, + anon_sym_LBRACK, + ACTIONS(1796), 1, + anon_sym_LT_LT, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2405), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1233), 1, + sym_identifier, + STATE(1265), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(266), 8, - anon_sym_SLASH, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1187), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, + sym_integer, + sym_discard, + [67442] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(264), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2413), 1, + sym_float, + ACTIONS(2423), 1, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31498] = 5, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67505] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1099), 1, - anon_sym_LPAREN, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2413), 1, + sym_float, + ACTIONS(2425), 1, + anon_sym_GT_GT, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67568] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(421), 8, + ACTIONS(2177), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2427), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(419), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2193), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31542] = 4, + [67623] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(391), 9, - anon_sym_DOT, + ACTIONS(632), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -31512,13 +63179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(389), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(630), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31533,368 +63196,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [31584] = 6, + anon_sym_LT_GT, + [67660] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1105), 1, - anon_sym_LPAREN, - STATE(493), 1, - sym_constant_record_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1101), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2413), 1, sym_float, + ACTIONS(2429), 1, + anon_sym_GT_GT, + STATE(1322), 1, + sym_identifier, + STATE(1568), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1103), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31630] = 6, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [67723] = 18, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1111), 1, - anon_sym_LPAREN, - STATE(474), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1107), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1792), 1, anon_sym_POUND, + ACTIONS(1794), 1, anon_sym_LBRACK, + ACTIONS(1796), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1109), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(1798), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(1800), 1, + anon_sym_DQUOTE, + ACTIONS(1806), 1, sym__decimal, + ACTIONS(1808), 1, + sym__discard_name, + ACTIONS(1810), 1, sym__name, - [31676] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1060), 1, - anon_sym_size, - ACTIONS(1066), 1, - anon_sym_unit, - STATE(1128), 1, - sym_expression_bit_string_segment_options, + ACTIONS(1812), 1, + sym__upname, + ACTIONS(2405), 1, + sym_float, + STATE(1194), 1, + sym__pattern_binary_expression, + STATE(1263), 1, + sym_identifier, + STATE(1271), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(307), 3, + STATE(1113), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(1804), 3, sym__hex, sym__octal, sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(896), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, + STATE(1187), 7, + sym__pattern_expression, + sym_record_pattern, + sym_tuple_pattern, + sym__pattern_bit_string, + sym_list_pattern, sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [31732] = 6, + sym_discard, + [67788] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1117), 1, + ACTIONS(642), 1, anon_sym_DOT, - ACTIONS(1119), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1113), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1115), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(461), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [31778] = 22, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [67827] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(1121), 1, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, - ACTIONS(1123), 1, - anon_sym_RPAREN, - ACTIONS(1125), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(2159), 1, anon_sym_LT_LT, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(1131), 1, + ACTIONS(2413), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - STATE(772), 1, + ACTIONS(2431), 1, + anon_sym_GT_GT, + STATE(1322), 1, sym_identifier, - STATE(908), 1, - sym__pattern, - STATE(1046), 1, - sym_record_pattern_argument, - STATE(1191), 1, - sym_label, - STATE(1290), 1, - sym_pattern_spread, + STATE(1637), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [31855] = 21, + [67890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - STATE(826), 1, - sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, - STATE(1204), 1, - sym_case_clauses, + ACTIONS(648), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(443), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [31930] = 21, + ACTIONS(461), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [67929] = 17, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(1145), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1147), 1, + ACTIONS(451), 1, sym__upname, - STATE(826), 1, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2413), 1, + sym_float, + ACTIONS(2433), 1, + anon_sym_GT_GT, + STATE(1322), 1, sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, - STATE(1292), 1, - sym_case_clauses, + STATE(1576), 1, + sym_constant_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(443), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [32005] = 9, + [67992] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, + ACTIONS(463), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(461), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(539), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(459), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31903,38 +63477,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_DOT_DOT, - [32056] = 8, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68031] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2347), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, + ACTIONS(2363), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 4, + ACTIONS(712), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(539), 16, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 10, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -31943,180 +63522,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_DOT_DOT, - [32105] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1159), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1161), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32146] = 11, + [68078] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, + ACTIONS(2361), 1, anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2347), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, + ACTIONS(2363), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2357), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2359), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(539), 9, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 6, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DOT_DOT, - [32201] = 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [68127] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, + ACTIONS(2361), 1, anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2347), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2349), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, + ACTIONS(2355), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2357), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2359), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(539), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_DOT_DOT, - [32258] = 6, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68178] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2347), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(541), 6, + ACTIONS(2349), 2, anon_sym_DASH, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(539), 18, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2357), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2359), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_DOT_DOT, - [32303] = 4, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68231] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(541), 8, + ACTIONS(640), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32125,13 +63657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(539), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(638), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32146,51 +63674,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32344] = 4, + anon_sym_LT_GT, + [68268] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(657), 8, + ACTIONS(658), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2347), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2357), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(655), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2359), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2365), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32385] = 4, + anon_sym_LT_GT, + [68323] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(651), 8, + ACTIONS(592), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32199,13 +63732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(649), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(590), 17, + anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32220,14 +63749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32426] = 4, + anon_sym_LT_GT, + [68360] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(489), 8, + ACTIONS(614), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32236,13 +63765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(487), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(612), 17, + anon_sym_LPAREN, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32257,263 +63782,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32467] = 4, + anon_sym_LT_GT, + [68397] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2351), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2353), 1, + anon_sym_AMP_AMP, + ACTIONS(2361), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1171), 12, - ts_builtin_sym_end, + ACTIONS(722), 2, anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2347), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2349), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2355), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2363), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2357), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2359), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2365), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [68452] = 17, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2413), 1, sym_float, + ACTIONS(2435), 1, + anon_sym_GT_GT, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1173), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [68515] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, sym__decimal, + ACTIONS(449), 1, sym__name, - [32508] = 13, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(2439), 1, + sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1517), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [68575] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, + ACTIONS(2189), 1, anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(2197), 1, anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2441), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2177), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2179), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, + ACTIONS(2181), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1163), 2, + ACTIONS(2201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, + ACTIONS(2183), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1165), 4, + anon_sym_LT_GT, + ACTIONS(2191), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2193), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(495), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [32567] = 21, + [68629] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1177), 1, - anon_sym_RBRACE, - ACTIONS(1179), 1, - anon_sym_POUND, - ACTIONS(1182), 1, - anon_sym_LBRACK, - ACTIONS(1185), 1, - anon_sym_LT_LT, - ACTIONS(1188), 1, - anon_sym_DASH, - ACTIONS(1191), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(1194), 1, - sym_float, - ACTIONS(1200), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(1203), 1, - sym__discard_name, - ACTIONS(1206), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1209), 1, + ACTIONS(451), 1, sym__upname, - STATE(826), 1, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2443), 1, + anon_sym_RPAREN, + ACTIONS(2445), 1, + sym_float, + STATE(1322), 1, sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(414), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1197), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [32642] = 5, + [68689] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(329), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1212), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1214), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32685] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [68749] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(658), 1, + anon_sym_DASH_GT, + ACTIONS(2453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2455), 1, + anon_sym_AMP_AMP, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(647), 8, + ACTIONS(2449), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2459), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(645), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2461), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2467), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32726] = 4, + anon_sym_LT_GT, + [68803] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1216), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2413), 1, sym_float, + STATE(1322), 1, + sym_identifier, + STATE(1637), 1, + sym_constant_bit_string_segment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1218), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [32767] = 4, + STATE(1574), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [68863] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(617), 8, + ACTIONS(754), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32522,13 +64144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(615), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(752), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32543,14 +64160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32808] = 4, + anon_sym_LT_GT, + [68899] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(637), 8, + ACTIONS(738), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32559,13 +64176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(635), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(736), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32580,14 +64192,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32849] = 4, + anon_sym_LT_GT, + [68935] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2469), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [68989] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2445), 1, + sym_float, + ACTIONS(2471), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [69049] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(671), 8, + ACTIONS(708), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32596,13 +64293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(669), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(706), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32617,14 +64309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32890] = 4, + anon_sym_LT_GT, + [69085] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(661), 8, + ACTIONS(712), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32633,13 +64325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(659), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(710), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32654,200 +64341,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [32931] = 10, + anon_sym_LT_GT, + [69121] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2449), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1157), 3, + ACTIONS(2467), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1165), 4, + anon_sym_LT_GT, + ACTIONS(712), 6, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(539), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_PLUS, + ACTIONS(710), 12, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_DOT_DOT, - [32984] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1085), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(910), 5, - sym__pattern_bit_string_segment_option, - sym__pattern_bit_string_named_segment_option, - sym__pattern_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33037] = 13, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + [69161] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, + ACTIONS(2455), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(710), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(2449), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2451), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, + ACTIONS(2457), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2459), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2461), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(663), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [33096] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - STATE(826), 1, - sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, - STATE(1180), 1, - sym_case_clauses, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(443), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33171] = 4, + ACTIONS(2467), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69213] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(611), 8, + ACTIONS(716), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32856,13 +64431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(609), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(714), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32877,51 +64447,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33212] = 4, + anon_sym_LT_GT, + [69249] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(702), 1, + anon_sym_DASH_GT, + ACTIONS(2453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2455), 1, + anon_sym_AMP_AMP, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(607), 8, + ACTIONS(2449), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2459), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(605), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2461), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2467), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33253] = 4, + anon_sym_LT_GT, + [69303] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(525), 8, + ACTIONS(700), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32930,13 +64504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(523), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(698), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32951,14 +64520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33294] = 4, + anon_sym_LT_GT, + [69339] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(603), 8, + ACTIONS(767), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -32967,13 +64536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(601), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(764), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -32988,14 +64552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33335] = 4, + anon_sym_LT_GT, + [69375] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(529), 8, + ACTIONS(688), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33004,13 +64568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(527), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(686), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -33025,14 +64584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33376] = 4, + anon_sym_LT_GT, + [69411] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(521), 8, + ACTIONS(692), 8, anon_sym_SLASH, anon_sym_DASH, anon_sym_LT, @@ -33041,13 +64600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_STAR, - ACTIONS(519), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(690), 16, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -33062,228 +64616,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33417] = 4, + anon_sym_LT_GT, + [69447] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(493), 8, + ACTIONS(2449), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(710), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2459), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(491), 21, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2461), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - anon_sym_PIPE_GT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, + ACTIONS(2467), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33458] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1060), 1, - anon_sym_size, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(991), 5, - sym__expression_bit_string_segment_option, - sym__expression_bit_string_named_segment_option, - sym__expression_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33511] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - ACTIONS(1066), 1, - anon_sym_unit, - ACTIONS(1070), 1, - anon_sym_size, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - ACTIONS(1064), 3, - anon_sym_utf8, - anon_sym_utf16, - anon_sym_utf32, - STATE(1018), 5, - sym__constant_bit_string_segment_option, - sym__constant_bit_string_named_segment_option, - sym__constant_bit_string_segment_option_size, - sym_integer, - sym__bit_string_segment_option, - ACTIONS(1062), 14, - anon_sym_binary, - anon_sym_bytes, - anon_sym_int, - anon_sym_float, - anon_sym_bit_string, - anon_sym_bits, - anon_sym_utf8_codepoint, - anon_sym_utf16_codepoint, - anon_sym_utf32_codepoint, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_big, - anon_sym_little, - anon_sym_native, - [33564] = 5, + anon_sym_LT_GT, + [69497] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1224), 1, - anon_sym_as, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2473), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1220), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1222), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33607] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [69551] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1226), 13, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1228), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2449), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33648] = 5, + anon_sym_PLUS, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2459), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2461), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2467), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [69599] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(353), 1, - anon_sym_COLON, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(331), 9, - anon_sym_DOT, + ACTIONS(2449), 2, anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_STAR, - ACTIONS(329), 19, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2467), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 9, + anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -33292,657 +64772,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + [69645] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2475), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - anon_sym_DOT_DOT, - [33691] = 21, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [69699] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - STATE(826), 1, - sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, - STATE(1237), 1, - sym_case_clauses, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(443), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33766] = 22, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(287), 1, + ACTIONS(2449), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(313), 1, - sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1230), 1, - anon_sym_RPAREN, - STATE(772), 1, - sym_identifier, - STATE(844), 1, - sym_record_pattern_argument, - STATE(908), 1, - sym__pattern, - STATE(1191), 1, - sym_label, - STATE(1248), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33843] = 4, + anon_sym_PLUS, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(712), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2467), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(710), 10, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + [69743] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1232), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1234), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, + ACTIONS(712), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [33884] = 22, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(710), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [69779] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1236), 1, - anon_sym_RPAREN, - STATE(772), 1, - sym_identifier, - STATE(908), 1, - sym__pattern, - STATE(1046), 1, - sym_record_pattern_argument, - STATE(1191), 1, - sym_label, - STATE(1280), 1, - sym_pattern_spread, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [33961] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1238), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, + ACTIONS(451), 1, sym__upname, - ACTIONS(1240), 17, - anon_sym_if, - anon_sym_import, - anon_sym_as, - anon_sym_const, + ACTIONS(2018), 1, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34002] = 21, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(2155), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(2159), 1, anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, + ACTIONS(2445), 1, sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1242), 1, - anon_sym_RBRACE, - STATE(826), 1, + ACTIONS(2477), 1, + anon_sym_RBRACK, + STATE(1322), 1, sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(893), 1, - sym_case_clause_pattern, - STATE(919), 1, - sym_case_clause_patterns, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(414), 2, - sym_case_clause, - aux_sym_case_clauses_repeat1, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [34077] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1244), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1246), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34117] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1248), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1250), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34157] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1252), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1254), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34197] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1256), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1258), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34237] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1260), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1262), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34277] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1264), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1266), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34317] = 4, + [69839] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1268), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2479), 1, + anon_sym_RBRACK, + ACTIONS(2481), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1270), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34357] = 4, + STATE(1572), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [69899] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2483), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [69953] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2485), 1, + anon_sym_RBRACK, + ACTIONS(2487), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1274), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34397] = 4, + STATE(1567), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70013] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1276), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2489), 1, + anon_sym_RPAREN, + ACTIONS(2491), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1278), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + STATE(1477), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70073] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2493), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34437] = 6, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [70127] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1280), 1, + ACTIONS(2495), 1, anon_sym_LPAREN, - STATE(542), 1, + STATE(1048), 1, sym_constant_record_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1103), 4, + ACTIONS(1576), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1101), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1572), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -33951,1169 +65168,1436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [34481] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [70167] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1282), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2497), 1, + anon_sym_RPAREN, + ACTIONS(2499), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1284), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34521] = 4, + STATE(1573), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70227] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2501), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(679), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [70281] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2503), 1, + anon_sym_RBRACK, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(681), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34561] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70341] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1286), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2505), 1, + anon_sym_RBRACK, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1288), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34601] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70401] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1290), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1292), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(684), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34641] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(682), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [70437] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2507), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1294), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [70491] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2509), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1296), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34681] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70551] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1298), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2511), 1, + anon_sym_RBRACK, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1300), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34721] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70611] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1302), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(720), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(718), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [70647] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2513), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1304), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34761] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70707] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1306), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2515), 1, + anon_sym_RPAREN, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1308), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34801] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [70767] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2517), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1310), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1312), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34841] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [70821] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1314), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1316), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34881] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [70875] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(722), 1, + anon_sym_DASH_GT, + ACTIONS(2453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2455), 1, + anon_sym_AMP_AMP, + ACTIONS(2463), 1, + anon_sym_PIPE_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1318), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1320), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2449), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2451), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34921] = 4, + anon_sym_PLUS, + ACTIONS(2457), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2465), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2459), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2461), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2467), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [70929] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1322), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1324), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(696), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [34961] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(694), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [70965] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2521), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1326), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1328), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35001] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71019] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2523), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1330), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1332), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35041] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71073] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2525), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1334), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1336), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35081] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71127] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2527), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1338), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1340), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35121] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71181] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1342), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1344), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(656), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35161] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(654), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71217] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2529), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1346), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1348), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35201] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71271] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2531), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1350), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1352), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35241] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71325] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1354), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1356), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35281] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71379] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2535), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1358), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1360), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35321] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71433] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1362), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1364), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(734), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35361] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(732), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71469] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1366), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2537), 1, + anon_sym_RBRACK, + ACTIONS(2539), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1368), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35401] = 4, + STATE(1459), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [71529] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2541), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1370), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1372), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35441] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71583] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2543), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1374), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1376), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35481] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71637] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2545), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1378), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1380), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35521] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71691] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2547), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1382), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1384), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35561] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71745] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2549), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1386), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1388), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35601] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [71799] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1390), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(772), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(770), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71835] = 16, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2551), 1, + anon_sym_RBRACK, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1392), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35641] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [71895] = 16, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1394), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2445), 1, sym_float, + ACTIONS(2553), 1, + anon_sym_RBRACK, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1396), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35681] = 4, + STATE(1417), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [71955] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1398), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1400), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(762), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35721] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(760), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [71991] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2555), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1402), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1404), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(1834), 11, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + anon_sym_use, sym__decimal, sym__name, - [35761] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1406), 12, - ts_builtin_sym_end, + ACTIONS(1832), 12, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35124,536 +66608,601 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1408), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35801] = 4, + [72029] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2557), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1412), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35841] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72083] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2559), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1414), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1416), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35881] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72137] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2561), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1418), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1420), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35921] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72191] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2563), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1422), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1424), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [35961] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72245] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1426), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1428), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(652), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36001] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(650), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [72281] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1430), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1432), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(758), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36041] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(756), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [72317] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2565), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1434), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1436), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36081] = 4, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72371] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1438), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1440), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(742), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36121] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(740), 16, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PIPE_GT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + [72407] = 13, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2189), 1, + anon_sym_PIPE_GT, + ACTIONS(2197), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2199), 1, + anon_sym_AMP_AMP, + ACTIONS(2567), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1442), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2177), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2179), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2181), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2201), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2183), 4, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + anon_sym_LT_GT, + ACTIONS(2191), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2193), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [72461] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2569), 1, sym_float, + STATE(1234), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1444), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36161] = 4, + STATE(1262), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [72518] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2571), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1446), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2573), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2576), 14, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [72555] = 15, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(2579), 1, anon_sym_POUND, + ACTIONS(2581), 1, anon_sym_LBRACK, + ACTIONS(2583), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2587), 1, sym_float, + STATE(665), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(652), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1448), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36201] = 4, + STATE(744), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [72612] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1450), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(441), 1, + anon_sym_DQUOTE, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(449), 1, + sym__name, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, + ACTIONS(2157), 1, anon_sym_LBRACK, + ACTIONS(2159), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2589), 1, sym_float, + STATE(1322), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(559), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1452), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36241] = 4, + STATE(1729), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [72669] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1454), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(2579), 1, anon_sym_POUND, + ACTIONS(2581), 1, anon_sym_LBRACK, + ACTIONS(2583), 1, anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2591), 1, sym_float, + STATE(665), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(652), 2, + sym_constructor_name, + sym_remote_constructor_name, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - sym__upname, - ACTIONS(1456), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36281] = 4, + STATE(742), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, + sym_string, + sym_integer, + [72726] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2593), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1458), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1460), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2573), 8, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36321] = 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2576), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [72763] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1462), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1464), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, + ACTIONS(2113), 11, anon_sym_DASH, - anon_sym_external, - anon_sym_type, anon_sym_fn, - anon_sym_try, anon_sym_todo, + anon_sym_panic, + anon_sym_echo, anon_sym_case, anon_sym_let, anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + anon_sym_use, sym__decimal, sym__name, - [36361] = 4, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1466), 12, - ts_builtin_sym_end, + ACTIONS(2111), 12, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_POUND, anon_sym_LBRACK, anon_sym_LT_LT, @@ -35664,1017 +67213,1040 @@ static const uint16_t ts_small_parse_table[] = { sym__octal, sym__binary, sym__upname, - ACTIONS(1468), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, - sym__decimal, - sym__name, - [36401] = 4, + [72798] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1470), 12, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, + ACTIONS(91), 1, anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - ACTIONS(1472), 16, - anon_sym_if, - anon_sym_import, - anon_sym_const, - anon_sym_DASH, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym_visibility_modifier, - sym_opacity_modifier, + ACTIONS(97), 1, sym__decimal, + ACTIONS(99), 1, sym__name, - [36441] = 20, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(2159), 1, anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, + ACTIONS(2595), 1, sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1474), 1, - anon_sym_if, - ACTIONS(1476), 1, - anon_sym_DASH_GT, - STATE(826), 1, + STATE(1234), 1, sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(1036), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1254), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [36512] = 18, + [72855] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1143), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1145), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1147), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(2159), 1, anon_sym_LT_LT, - ACTIONS(1486), 1, + ACTIONS(2597), 1, sym_float, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(695), 1, + STATE(1234), 1, sym_identifier, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(703), 9, + STATE(1253), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + sym_constant_field_access, sym_string, sym_integer, - [36579] = 19, + [72912] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(61), 1, + sym__name, + ACTIONS(63), 1, + sym__upname, + ACTIONS(2579), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(2581), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(2583), 1, anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, + ACTIONS(2585), 1, anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, + ACTIONS(2599), 1, sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1488), 1, - anon_sym_if, - STATE(806), 1, - sym__pattern, - STATE(826), 1, + STATE(665), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1490), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(702), 2, + STATE(652), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(779), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [36648] = 18, + [72969] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(447), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, anon_sym_POUND, - ACTIONS(1482), 1, + ACTIONS(2157), 1, anon_sym_LBRACK, - ACTIONS(1484), 1, + ACTIONS(2159), 1, anon_sym_LT_LT, - ACTIONS(1492), 1, + ACTIONS(2445), 1, sym_float, - STATE(662), 1, + STATE(1322), 1, sym_identifier, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(307), 3, + ACTIONS(445), 3, sym__hex, sym__octal, sym__binary, - STATE(706), 9, + STATE(1417), 8, sym__constant_value, sym_constant_tuple, sym_constant_list, sym__constant_bit_string, sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, + sym_constant_field_access, sym_string, sym_integer, - [36715] = 19, + [73026] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, + ACTIONS(97), 1, sym__decimal, - ACTIONS(1145), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1147), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1494), 1, - anon_sym_if, - STATE(806), 1, - sym__pattern, - STATE(826), 1, + ACTIONS(2018), 1, + anon_sym_DASH, + ACTIONS(2155), 1, + anon_sym_POUND, + ACTIONS(2157), 1, + anon_sym_LBRACK, + ACTIONS(2159), 1, + anon_sym_LT_LT, + ACTIONS(2601), 1, + sym_float, + STATE(1234), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1496), 2, - anon_sym_DASH_GT, - anon_sym_PIPE, - STATE(702), 2, + STATE(559), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(1141), 3, + ACTIONS(95), 3, sym__hex, sym__octal, sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(1260), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [36784] = 20, + [73083] = 15, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(309), 1, + ACTIONS(59), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(1121), 1, + ACTIONS(63), 1, + sym__upname, + ACTIONS(2579), 1, anon_sym_POUND, - ACTIONS(1125), 1, + ACTIONS(2581), 1, anon_sym_LBRACK, - ACTIONS(1127), 1, + ACTIONS(2583), 1, anon_sym_LT_LT, - ACTIONS(1131), 1, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2603), 1, sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1498), 1, - anon_sym_RBRACK, - ACTIONS(1500), 1, - anon_sym_DOT_DOT, - STATE(772), 1, + STATE(665), 1, sym_identifier, - STATE(806), 1, - sym__pattern, - STATE(1288), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, + STATE(652), 2, sym_constructor_name, sym_remote_constructor_name, - ACTIONS(307), 3, + ACTIONS(57), 3, sym__hex, sym__octal, sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, + STATE(760), 8, + sym__constant_value, + sym_constant_tuple, + sym_constant_list, + sym__constant_bit_string, + sym_constant_record, + sym_constant_field_access, sym_string, sym_integer, - sym_discard, - [36855] = 13, + [73140] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1610), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1608), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73174] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2611), 1, + anon_sym_AMP_AMP, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2605), 2, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2613), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2615), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2617), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [73222] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2625), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2623), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73256] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2629), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2627), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73290] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2633), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2637), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2639), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2635), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2605), 9, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [73332] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2611), 1, + anon_sym_AMP_AMP, + ACTIONS(2641), 1, + anon_sym_RBRACE, + ACTIONS(2643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2613), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2615), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2617), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [73382] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2647), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2645), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73416] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2635), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2605), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73450] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1684), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1682), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73484] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1680), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1678), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73518] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1622), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1620), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73552] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2607), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2635), 6, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1155), 2, + ACTIONS(2605), 11, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1163), 2, + [73590] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2605), 3, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2621), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2615), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2617), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - ACTIONS(1502), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [36912] = 20, + [73636] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1500), 1, - anon_sym_DOT_DOT, - ACTIONS(1504), 1, - anon_sym_RBRACK, - STATE(772), 1, - sym_identifier, - STATE(839), 1, - sym__pattern, - STATE(1206), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [36983] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1135), 1, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1506), 1, - sym_float, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(695), 1, - sym_identifier, - STATE(696), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(698), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37050] = 18, + anon_sym_PLUS, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2615), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2617), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2605), 5, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [73680] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1508), 1, - sym_float, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(695), 1, - sym_identifier, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(700), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37117] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(287), 1, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1510), 1, - sym_float, - STATE(662), 1, - sym_identifier, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(696), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(707), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37184] = 18, + anon_sym_PLUS, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2635), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2605), 9, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [73722] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1512), 1, - sym_float, - STATE(662), 1, - sym_identifier, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(708), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37251] = 18, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(287), 1, + ACTIONS(2651), 8, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1514), 1, - sym_float, - STATE(662), 1, - sym_identifier, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(696), 1, - sym__case_clause_tuple_access, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(699), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37318] = 20, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2649), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73756] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1516), 1, - anon_sym_if, - ACTIONS(1518), 1, - anon_sym_DASH_GT, - STATE(826), 1, - sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(1036), 1, - sym_case_clause_pattern, + ACTIONS(2611), 1, + anon_sym_AMP_AMP, + ACTIONS(2643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2653), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37389] = 18, + ACTIONS(2607), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2609), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2613), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2619), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2621), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2615), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2617), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [73806] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1520), 1, - sym_float, - STATE(662), 1, - sym_identifier, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(683), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37456] = 18, + ACTIONS(1668), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1666), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73840] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1522), 1, - sym_float, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(695), 1, - sym_identifier, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(701), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37523] = 20, + ACTIONS(1664), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1662), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73874] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1500), 1, - anon_sym_DOT_DOT, - ACTIONS(1524), 1, - anon_sym_RBRACK, - STATE(772), 1, - sym_identifier, - STATE(806), 1, - sym__pattern, - STATE(1282), 1, - sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37594] = 18, + ACTIONS(1660), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1658), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73908] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1478), 1, - anon_sym_LBRACE, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1520), 1, - sym_float, - STATE(684), 1, - sym__case_clause_guard_binary_expression, - STATE(695), 1, - sym_identifier, - STATE(696), 1, - sym__case_clause_tuple_access, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(683), 9, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym__case_clause_guard_expression, - sym__case_clause_guard_unit, - sym_string, - sym_integer, - [37661] = 16, + ACTIONS(1588), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1586), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73942] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1526), 1, - anon_sym_COMMA, - ACTIONS(1528), 1, - anon_sym_RBRACK, - ACTIONS(1530), 1, - anon_sym_DOT_DOT, - STATE(856), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(1644), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, anon_sym_PLUS, - ACTIONS(1155), 2, + anon_sym_STAR, + ACTIONS(1642), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1163), 2, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [73976] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2635), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2605), 14, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74010] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2639), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2635), 6, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + anon_sym_PLUS, + ACTIONS(2605), 11, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [37723] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + [74048] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1388), 4, + ACTIONS(2647), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1386), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2645), 14, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -36684,32 +68256,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37761] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74082] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1396), 4, + ACTIONS(1656), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1394), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1654), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36718,32 +68286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37799] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74116] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1340), 4, + ACTIONS(1648), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1338), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1646), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36752,32 +68316,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37837] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74150] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1328), 4, + ACTIONS(1618), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1326), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1616), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36786,32 +68346,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37875] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74184] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1626), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1314), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1624), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36820,130 +68376,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [37913] = 19, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74218] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(313), 1, - sym__name, - ACTIONS(315), 1, - sym__upname, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - STATE(772), 1, - sym_identifier, - STATE(908), 1, - sym__pattern, - STATE(1046), 1, - sym_record_pattern_argument, - STATE(1191), 1, - sym_label, + ACTIONS(2655), 1, + anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [37981] = 19, + ACTIONS(2605), 2, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + ACTIONS(2631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2633), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2637), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2657), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2639), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2659), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2661), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [74266] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2633), 2, anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1532), 1, - anon_sym_GT_GT, - STATE(772), 1, - sym_identifier, - STATE(981), 1, - sym__pattern, - STATE(1083), 1, - sym_pattern_bit_string_segment, + anon_sym_PLUS, + ACTIONS(2637), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2657), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2605), 3, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2639), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2659), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2661), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + [74312] = 9, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38049] = 4, + ACTIONS(2631), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2633), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2637), 2, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + ACTIONS(2639), 3, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + ACTIONS(2659), 4, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + ACTIONS(2661), 4, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + ACTIONS(2605), 5, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [74356] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1320), 4, + ACTIONS(1614), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1318), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1612), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36952,32 +68514,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38087] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74390] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1408), 4, + ACTIONS(1636), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1406), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1634), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -36986,32 +68544,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38125] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74424] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1270), 4, + ACTIONS(1640), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1268), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1638), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37020,81 +68574,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38163] = 19, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74458] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, - sym__discard_name, - ACTIONS(1534), 1, - anon_sym_GT_GT, - STATE(772), 1, - sym_identifier, - STATE(981), 1, - sym__pattern, - STATE(1083), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38231] = 4, + ACTIONS(1652), 8, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1650), 14, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_DOT, + anon_sym_LT_EQ_DOT, + anon_sym_GT_DOT, + anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74492] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1676), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1256), 22, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(1674), 14, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -37103,31 +68634,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74526] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(381), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(379), 21, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [38269] = 4, + [74560] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1296), 4, + ACTIONS(2651), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1294), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2649), 14, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -37137,111 +68694,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38307] = 4, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74594] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1392), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1390), 22, + ACTIONS(2103), 22, + anon_sym_if, anon_sym_RBRACE, - anon_sym_import, + anon_sym_AT, anon_sym_COMMA, - anon_sym_const, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_external, + anon_sym_import, + anon_sym_as, anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_fn, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + anon_sym_external, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [38345] = 16, + [74626] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, + ACTIONS(2655), 1, anon_sym_AMP_AMP, - ACTIONS(1175), 1, + ACTIONS(2663), 1, + anon_sym_DASH_GT, + ACTIONS(2665), 1, anon_sym_PIPE_PIPE, - ACTIONS(1536), 1, - anon_sym_COMMA, - ACTIONS(1538), 1, - anon_sym_RBRACK, - ACTIONS(1540), 1, - anon_sym_DOT_DOT, - STATE(866), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2631), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(1151), 2, + ACTIONS(2633), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1155), 2, + ACTIONS(2637), 2, anon_sym_PLUS_DOT, anon_sym_DASH_DOT, - ACTIONS(1163), 2, + ACTIONS(2657), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1157), 3, + ACTIONS(2639), 3, anon_sym_STAR_DOT, anon_sym_SLASH_DOT, anon_sym_PERCENT, - ACTIONS(1165), 4, + ACTIONS(2659), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + ACTIONS(2661), 4, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [38407] = 4, + [74676] = 4, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1356), 4, + ACTIONS(2625), 8, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1354), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2623), 14, anon_sym_DASH_GT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -37251,14467 +68791,13240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38445] = 16, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74710] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1544), 1, - anon_sym_RBRACK, - ACTIONS(1546), 1, - anon_sym_DOT_DOT, - STATE(876), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, + ACTIONS(2629), 8, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(1167), 4, + anon_sym_PLUS, + anon_sym_STAR, + ACTIONS(2627), 14, + anon_sym_DASH_GT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_DOT, anon_sym_LT_EQ_DOT, anon_sym_GT_DOT, anon_sym_GT_EQ_DOT, - [38507] = 19, + anon_sym_PLUS_DOT, + anon_sym_DASH_DOT, + anon_sym_STAR_DOT, + anon_sym_SLASH_DOT, + anon_sym_PERCENT, + [74744] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, + ACTIONS(2667), 1, + anon_sym_RBRACE, + ACTIONS(2669), 1, + anon_sym_AT, + ACTIONS(2671), 1, + anon_sym_import, + ACTIONS(2673), 1, + anon_sym_type, + ACTIONS(2675), 1, + anon_sym_const, + ACTIONS(2677), 1, + anon_sym_fn, + ACTIONS(2679), 1, + anon_sym_external, + ACTIONS(2681), 1, + sym_visibility_modifier, + ACTIONS(2683), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1083), 10, + sym__module_statement, + sym_attribute, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [74791] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2685), 1, + anon_sym_RBRACE, + ACTIONS(2687), 1, + anon_sym_AT, + ACTIONS(2690), 1, + anon_sym_import, + ACTIONS(2693), 1, + anon_sym_type, + ACTIONS(2696), 1, + anon_sym_const, + ACTIONS(2699), 1, + anon_sym_fn, + ACTIONS(2702), 1, + anon_sym_external, + ACTIONS(2705), 1, + sym_visibility_modifier, + ACTIONS(2708), 1, + sym_opacity_modifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1082), 10, + sym__module_statement, + sym_attribute, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [74838] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2669), 1, + anon_sym_AT, + ACTIONS(2671), 1, + anon_sym_import, + ACTIONS(2673), 1, + anon_sym_type, + ACTIONS(2675), 1, + anon_sym_const, + ACTIONS(2677), 1, + anon_sym_fn, + ACTIONS(2679), 1, + anon_sym_external, + ACTIONS(2681), 1, + sym_visibility_modifier, + ACTIONS(2683), 1, + sym_opacity_modifier, + ACTIONS(2711), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1082), 10, + sym__module_statement, + sym_attribute, + sym_import, + sym_constant, + sym_external_type, + sym_external_function, + sym_function, + sym_type_definition, + sym_type_alias, + aux_sym_target_group_repeat1, + [74885] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2713), 1, + anon_sym_RPAREN, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2721), 1, + sym__name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(693), 1, + STATE(1739), 1, + sym_data_constructor_argument, + STATE(1765), 1, + sym_label, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1710), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [74932] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2721), 1, sym__name, - ACTIONS(1121), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2725), 1, + anon_sym_RPAREN, + STATE(1476), 1, + sym_data_constructor_argument, + STATE(1765), 1, + sym_label, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1710), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [74979] = 13, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1548), 1, - anon_sym_GT_GT, - STATE(772), 1, + ACTIONS(2721), 1, + sym__name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2727), 1, + anon_sym_RPAREN, + STATE(1739), 1, + sym_data_constructor_argument, + STATE(1765), 1, + sym_label, + STATE(1770), 1, sym_identifier, - STATE(980), 1, - sym_pattern_bit_string_segment, - STATE(981), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38575] = 4, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1710), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75026] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(482), 2, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(1872), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [75054] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2729), 1, + anon_sym_RPAREN, + ACTIONS(2731), 1, + sym__name, + STATE(1715), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75098] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2721), 1, + sym__name, + ACTIONS(2723), 1, + sym__upname, + STATE(1739), 1, + sym_data_constructor_argument, + STATE(1765), 1, + sym_label, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1710), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75142] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2733), 1, + anon_sym_RPAREN, + STATE(1715), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75186] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2735), 1, + anon_sym_RPAREN, + STATE(1570), 1, + sym_external_function_parameter, + STATE(1640), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1639), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75230] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2737), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_external_function_parameter, + STATE(1640), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1639), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75274] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1742), 16, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [75300] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2739), 1, + anon_sym_RPAREN, + STATE(1468), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75344] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2741), 1, + anon_sym_RPAREN, + STATE(1715), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75388] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2743), 1, + anon_sym_RPAREN, + STATE(1715), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75432] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2745), 1, + anon_sym_LPAREN, + STATE(1133), 1, + sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1368), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1366), 22, + ACTIONS(1722), 14, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_import, + anon_sym_AT, anon_sym_COMMA, - anon_sym_const, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, + anon_sym_import, anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + anon_sym_external, + anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [38613] = 4, + [75462] = 12, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2747), 1, + anon_sym_RPAREN, + STATE(1487), 1, + sym_type_argument, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1278), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1276), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75506] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38651] = 4, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2749), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_external_function_parameter, + STATE(1640), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1639), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75550] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1633), 1, + sym_external_function_parameter, + STATE(1640), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1436), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1434), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1639), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75591] = 11, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38689] = 16, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2751), 1, + anon_sym_RPAREN, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1486), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75632] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 1, - anon_sym_COMMA, - ACTIONS(1552), 1, - anon_sym_RBRACK, - ACTIONS(1554), 1, - anon_sym_DOT_DOT, - STATE(867), 1, - aux_sym_tuple_repeat1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2753), 1, + anon_sym_RPAREN, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [38751] = 4, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75673] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1376), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1374), 22, + ACTIONS(1714), 15, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_import, + anon_sym_AT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_const, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, + anon_sym_import, anon_sym_type, + anon_sym_const, + anon_sym_EQ, anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, + anon_sym_external, + anon_sym_LT_DASH, sym_visibility_modifier, sym_opacity_modifier, - [38789] = 4, + [75698] = 11, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2755), 1, + anon_sym_RPAREN, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1284), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1282), 22, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - sym_visibility_modifier, - sym_opacity_modifier, - [38827] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75739] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1556), 1, + ACTIONS(2757), 1, anon_sym_RPAREN, - ACTIONS(1558), 1, - sym_float, - STATE(1098), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + ACTIONS(2759), 1, + anon_sym_POUND, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1681), 1, + sym_constant_type_argument, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [38892] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1711), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [75782] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2719), 1, sym__discard_name, - STATE(341), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2759), 1, + anon_sym_POUND, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2763), 1, + anon_sym_RPAREN, + STATE(1681), 1, + sym_constant_type_argument, + STATE(1770), 1, sym_identifier, - STATE(958), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [38957] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1711), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [75825] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, + ACTIONS(2723), 1, sym__upname, - STATE(826), 1, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2765), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, - STATE(850), 1, - sym__pattern, - STATE(1036), 1, - sym_case_clause_pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39022] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1475), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75866] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(244), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2767), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, - STATE(988), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39087] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1409), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75907] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1560), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2769), 1, anon_sym_RPAREN, - STATE(772), 1, + STATE(1770), 1, sym_identifier, - STATE(913), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39152] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [75948] = 12, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1562), 1, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2771), 1, anon_sym_RPAREN, - STATE(967), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + STATE(1453), 1, + sym_constant_type_argument, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39217] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1711), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [75991] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1564), 1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2773), 1, anon_sym_RPAREN, - STATE(1025), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39282] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76032] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2775), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, - STATE(981), 1, - sym__pattern, - STATE(1083), 1, - sym_pattern_bit_string_segment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39347] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76073] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1566), 1, - anon_sym_RPAREN, - STATE(1098), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, - sym_identifier, + ACTIONS(2779), 1, + anon_sym_LPAREN, + STATE(1190), 1, + sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39412] = 18, + ACTIONS(2777), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [76102] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(76), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1715), 1, + sym_type_argument, + STATE(1770), 1, sym_identifier, - STATE(969), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39477] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1728), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76143] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(74), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + ACTIONS(2781), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, - STATE(969), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39542] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76184] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, + ACTIONS(2791), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1568), 1, - anon_sym_RPAREN, - STATE(1098), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + STATE(1847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39607] = 18, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(675), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76222] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, - sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - ACTIONS(1570), 1, - anon_sym_RPAREN, - STATE(1098), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [39672] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1745), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76260] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(246), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(988), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39737] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1401), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76298] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(427), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(988), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39802] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1204), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76336] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1572), 1, - anon_sym_RPAREN, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(806), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39867] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1787), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76374] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(693), 1, + ACTIONS(2731), 1, sym__name, - ACTIONS(1121), 1, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1645), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76412] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1574), 1, - anon_sym_RPAREN, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(806), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [39932] = 15, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1261), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76450] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1576), 1, - anon_sym_COMMA, - ACTIONS(1578), 1, - anon_sym_RPAREN, - STATE(948), 1, - aux_sym_tuple_repeat1, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, + sym__name, + ACTIONS(2791), 1, + sym__upname, + STATE(1847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [39991] = 15, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(789), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76488] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1582), 1, - anon_sym_RPAREN, - STATE(1035), 1, - aux_sym_tuple_repeat1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40050] = 18, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1641), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76526] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2719), 1, sym__discard_name, - STATE(429), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2759), 1, + anon_sym_POUND, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2793), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, - STATE(988), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40115] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1463), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [76566] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1121), 1, - anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2719), 1, sym__discard_name, - STATE(340), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2759), 1, + anon_sym_POUND, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1681), 1, + sym_constant_type_argument, + STATE(1770), 1, sym_identifier, - STATE(958), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40180] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1711), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [76606] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(246), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(1010), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40245] = 15, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1827), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76644] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1584), 1, - anon_sym_LBRACE, - ACTIONS(1586), 1, - anon_sym_COMMA, - STATE(973), 1, - aux_sym_tuple_repeat1, + ACTIONS(449), 1, + sym__name, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2759), 1, + anon_sym_POUND, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2795), 1, + anon_sym_RPAREN, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40304] = 18, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1461), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [76684] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(244), 1, - sym__assignment, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(1010), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40369] = 15, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1651), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76722] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1588), 1, - anon_sym_COMMA, - ACTIONS(1590), 1, - anon_sym_RPAREN, - STATE(979), 1, - aux_sym_tuple_repeat1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40428] = 15, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1663), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76760] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1592), 1, - anon_sym_COMMA, - ACTIONS(1594), 1, - anon_sym_RPAREN, - STATE(935), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40487] = 17, + ACTIONS(2000), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [76784] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - ACTIONS(1135), 1, - anon_sym_DASH, - ACTIONS(1137), 1, - anon_sym_DQUOTE, - ACTIONS(1139), 1, - sym_float, - ACTIONS(1143), 1, - sym__decimal, - ACTIONS(1145), 1, - sym__name, - ACTIONS(1147), 1, + ACTIONS(2723), 1, sym__upname, - STATE(806), 1, - sym__pattern, - STATE(826), 1, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(1141), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(833), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40549] = 17, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1783), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76822] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1596), 1, - anon_sym_GT_GT, - ACTIONS(1598), 1, - sym_float, - STATE(1170), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [40611] = 17, + ACTIONS(1992), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [76846] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - ACTIONS(1600), 1, - anon_sym_GT_GT, - STATE(1170), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [40673] = 17, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1737), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76884] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - ACTIONS(1602), 1, - anon_sym_GT_GT, - STATE(1170), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [40735] = 13, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1216), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76922] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1604), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40789] = 17, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1703), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76960] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(313), 1, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, sym__name, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(483), 1, + ACTIONS(2791), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1558), 1, - sym_float, - STATE(1098), 1, - sym_constant_record_argument, - STATE(1196), 1, - sym_label, - STATE(1243), 1, + STATE(1847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1153), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [40851] = 17, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(777), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [76998] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(693), 1, + ACTIONS(2731), 1, sym__name, - ACTIONS(1121), 1, + STATE(1770), 1, + sym_identifier, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1140), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77036] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(806), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [40913] = 13, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1709), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77074] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1606), 2, + ACTIONS(2127), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [40967] = 17, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77098] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2783), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, sym__discard_name, - STATE(772), 1, + ACTIONS(2789), 1, + sym__name, + ACTIONS(2791), 1, + sym__upname, + STATE(1847), 1, sym_identifier, - STATE(1042), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [41029] = 17, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(716), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77136] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(1034), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [41091] = 17, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1255), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77174] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(693), 1, - sym__name, - ACTIONS(1121), 1, + ACTIONS(2715), 1, anon_sym_POUND, - ACTIONS(1125), 1, - anon_sym_LBRACK, - ACTIONS(1127), 1, - anon_sym_LT_LT, - ACTIONS(1131), 1, - sym_float, - ACTIONS(1133), 1, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, sym__discard_name, - STATE(772), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, - STATE(1008), 1, - sym__pattern, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(702), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(788), 7, - sym_record_pattern, - sym_tuple_pattern, - sym__pattern_bit_string, - sym_list_pattern, - sym_string, - sym_integer, - sym_discard, - [41153] = 13, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1153), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77212] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1608), 2, + ACTIONS(2131), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41207] = 17, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77236] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2791), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - ACTIONS(1610), 1, - anon_sym_GT_GT, - STATE(1170), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, + STATE(1847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41269] = 17, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(750), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77274] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - ACTIONS(1612), 1, - anon_sym_GT_GT, - STATE(940), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41331] = 17, + ACTIONS(2119), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77298] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - ACTIONS(1614), 1, - anon_sym_GT_GT, - STATE(1044), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2797), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41393] = 16, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1744), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [77338] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1616), 1, - anon_sym_RBRACK, - ACTIONS(1618), 1, - sym_float, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2799), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41452] = 13, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1744), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [77378] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1620), 1, - anon_sym_RBRACK, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41505] = 16, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1743), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77416] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2791), 1, sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1622), 1, - anon_sym_RPAREN, - STATE(1243), 1, + STATE(1847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41564] = 13, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(691), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77454] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1624), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1930), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77478] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41617] = 13, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1251), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77516] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1626), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41670] = 13, + ACTIONS(1926), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77540] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1628), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41723] = 13, + ACTIONS(1922), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77564] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1630), 1, - anon_sym_RBRACK, + ACTIONS(2783), 1, + anon_sym_POUND, + ACTIONS(2785), 1, + anon_sym_fn, + ACTIONS(2787), 1, + sym__discard_name, + ACTIONS(2789), 1, + sym__name, + ACTIONS(2791), 1, + sym__upname, + STATE(1847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41776] = 16, + STATE(651), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(740), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77602] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1632), 1, - anon_sym_RBRACK, - ACTIONS(1634), 1, - sym_float, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2801), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1043), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41835] = 16, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1744), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [77642] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1636), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1984), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1243), 1, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77666] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [41894] = 13, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1623), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77704] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1638), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [41947] = 13, + ACTIONS(1948), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77728] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42000] = 13, + ACTIONS(1914), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77752] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1642), 1, - anon_sym_COMMA, + ACTIONS(2715), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_fn, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2731), 1, + sym__name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42053] = 16, + STATE(1097), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1785), 6, + sym__type, + sym_type_hole, + sym_tuple_type, + sym_function_type, + sym_type, + sym_type_var, + [77790] = 11, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1644), 1, - anon_sym_RBRACK, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + ACTIONS(2803), 1, + anon_sym_RPAREN, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42112] = 13, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1744), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [77830] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1646), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42165] = 16, + ACTIONS(1976), 14, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + anon_sym_LT_DASH, + sym_visibility_modifier, + sym_opacity_modifier, + [77854] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2805), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [77877] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1648), 1, - anon_sym_RBRACK, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42224] = 13, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1552), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [77914] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1650), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42277] = 16, + ACTIONS(2807), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [77937] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1652), 1, - anon_sym_RPAREN, - ACTIONS(1654), 1, - sym_float, - STATE(1243), 1, - sym_identifier, + ACTIONS(2809), 1, + anon_sym_LPAREN, + STATE(1219), 1, + sym_type_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1030), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42336] = 13, + ACTIONS(1703), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [77964] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1656), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42389] = 16, + ACTIONS(2811), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [77987] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1658), 1, - anon_sym_RPAREN, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42448] = 16, + ACTIONS(2813), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78010] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1660), 1, - anon_sym_RBRACK, - ACTIONS(1662), 1, - sym_float, - STATE(1243), 1, - sym_identifier, + ACTIONS(2815), 1, + anon_sym_SLASH, + STATE(1175), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(938), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42507] = 13, + ACTIONS(1693), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78037] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1664), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42560] = 16, + ACTIONS(2817), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78060] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1666), 1, - anon_sym_RPAREN, - ACTIONS(1668), 1, - sym_float, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1045), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42619] = 16, + ACTIONS(2819), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78083] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1670), 1, - anon_sym_RPAREN, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42678] = 13, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1859), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [78120] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1672), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42731] = 13, + ACTIONS(2821), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78143] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1674), 1, - anon_sym_RBRACK, + ACTIONS(2823), 1, + anon_sym_SLASH, + STATE(1175), 1, + aux_sym_module_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42784] = 16, + ACTIONS(1686), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78170] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1598), 1, - sym_float, - STATE(1170), 1, - sym_constant_bit_string_segment, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(939), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42843] = 16, + ACTIONS(2826), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78193] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - ACTIONS(1676), 1, - anon_sym_RBRACK, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [42902] = 13, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1744), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [78230] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1678), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [42955] = 13, + ACTIONS(2828), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78253] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43008] = 13, + ACTIONS(2830), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78276] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1153), 1, - anon_sym_PIPE_GT, - ACTIONS(1169), 1, - anon_sym_AMP_AMP, - ACTIONS(1175), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1682), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2832), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78299] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1149), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1151), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1155), 2, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - ACTIONS(1163), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1157), 3, - anon_sym_STAR_DOT, - anon_sym_SLASH_DOT, - anon_sym_PERCENT, - ACTIONS(1165), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1167), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43061] = 15, + ACTIONS(2834), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78322] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1684), 1, - sym_float, - STATE(1183), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(800), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43117] = 15, + ACTIONS(2836), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78345] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1686), 1, - anon_sym_POUND, - ACTIONS(1688), 1, - anon_sym_LBRACK, - ACTIONS(1690), 1, - anon_sym_LT_LT, - ACTIONS(1692), 1, - sym_float, - STATE(1182), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(395), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(496), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43173] = 15, + ACTIONS(2838), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78368] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1686), 1, - anon_sym_POUND, - ACTIONS(1688), 1, - anon_sym_LBRACK, - ACTIONS(1690), 1, - anon_sym_LT_LT, - ACTIONS(1694), 1, - sym_float, - STATE(1182), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(395), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(488), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43229] = 15, + ACTIONS(2840), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78391] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(483), 1, + ACTIONS(2719), 1, + sym__discard_name, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1480), 1, + ACTIONS(2759), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1696), 1, - sym_float, - STATE(1243), 1, + ACTIONS(2761), 1, + anon_sym_fn, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1131), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43285] = 15, + STATE(1333), 2, + sym_type_identifier, + sym_remote_type_identifier, + STATE(1458), 5, + sym__constant_type, + sym_constant_tuple_type, + sym_constant_function_type, + sym_constant_type, + sym_type_hole, + [78428] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(457), 1, - anon_sym_DASH, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(481), 1, - sym__name, - ACTIONS(483), 1, - sym__upname, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1618), 1, - sym_float, - STATE(1243), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(975), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43341] = 15, + ACTIONS(2842), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78451] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1698), 1, - sym_float, - STATE(1183), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(780), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43397] = 15, + ACTIONS(2844), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78474] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1700), 1, - sym_float, - STATE(1183), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(804), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43453] = 15, + ACTIONS(2844), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78497] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(287), 1, - anon_sym_DASH, - ACTIONS(303), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1480), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACK, - ACTIONS(1484), 1, - anon_sym_LT_LT, - ACTIONS(1702), 1, - sym_float, - STATE(1183), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(453), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(779), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43509] = 15, + ACTIONS(2846), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78520] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1686), 1, - anon_sym_POUND, - ACTIONS(1688), 1, - anon_sym_LBRACK, - ACTIONS(1690), 1, - anon_sym_LT_LT, - ACTIONS(1704), 1, - sym_float, - STATE(1182), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(395), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(491), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43565] = 15, + ACTIONS(2848), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78543] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(23), 1, - anon_sym_DASH, - ACTIONS(47), 1, - anon_sym_DQUOTE, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(57), 1, - sym__upname, - ACTIONS(481), 1, - sym__name, - ACTIONS(1686), 1, - anon_sym_POUND, - ACTIONS(1688), 1, - anon_sym_LBRACK, - ACTIONS(1690), 1, - anon_sym_LT_LT, - ACTIONS(1706), 1, - sym_float, - STATE(1182), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(395), 2, - sym_constructor_name, - sym_remote_constructor_name, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(495), 7, - sym__constant_value, - sym_constant_tuple, - sym_constant_list, - sym__constant_bit_string, - sym_constant_record, - sym_string, - sym_integer, - [43621] = 4, + ACTIONS(2850), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78566] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(681), 9, - anon_sym_DASH, - anon_sym_fn, - anon_sym_try, - anon_sym_todo, - anon_sym_case, - anon_sym_let, - anon_sym_assert, - sym__decimal, - sym__name, - ACTIONS(679), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LBRACK, - anon_sym_LT_LT, - anon_sym_BANG, - anon_sym_DQUOTE, - sym_float, - sym__hex, - sym__octal, - sym__binary, - sym__upname, - [43654] = 4, + ACTIONS(2852), 13, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78589] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(367), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(365), 13, + ACTIONS(2828), 13, anon_sym_if, - anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43684] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78612] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(331), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(329), 13, + ACTIONS(2854), 13, anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78635] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2815), 1, + anon_sym_SLASH, + STATE(1170), 1, + aux_sym_module_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1699), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, anon_sym_DOT, anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78662] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2856), 13, + anon_sym_if, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43714] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78685] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(347), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(345), 13, + ACTIONS(2858), 13, anon_sym_if, - anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43744] = 4, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78708] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(621), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(619), 12, + ACTIONS(2860), 13, anon_sym_if, - anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43773] = 13, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78731] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1710), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2834), 13, + anon_sym_if, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1716), 1, - sym__name, - ACTIONS(1718), 1, - sym__upname, - STATE(1109), 1, - sym_data_constructor_argument, - STATE(1185), 1, - sym_identifier, - STATE(1246), 1, - sym_label, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [78754] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(2862), 1, + anon_sym_DASH_GT, + STATE(1266), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1099), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [43820] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1720), 1, + ACTIONS(1736), 9, anon_sym_RBRACE, - ACTIONS(1722), 1, + anon_sym_AT, anon_sym_import, - ACTIONS(1724), 1, - anon_sym_const, - ACTIONS(1726), 1, - anon_sym_external, - ACTIONS(1728), 1, anon_sym_type, - ACTIONS(1730), 1, + anon_sym_const, anon_sym_fn, - ACTIONS(1732), 1, + anon_sym_external, sym_visibility_modifier, - ACTIONS(1734), 1, sym_opacity_modifier, + [78782] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2864), 1, + anon_sym_LPAREN, + STATE(1235), 1, + sym__attribute_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(639), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [43863] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1736), 1, + ACTIONS(1730), 10, anon_sym_RBRACE, - ACTIONS(1738), 1, + anon_sym_AT, anon_sym_import, - ACTIONS(1741), 1, - anon_sym_const, - ACTIONS(1744), 1, - anon_sym_external, - ACTIONS(1747), 1, anon_sym_type, - ACTIONS(1750), 1, + anon_sym_const, anon_sym_fn, - ACTIONS(1753), 1, + anon_sym_external, sym_visibility_modifier, - ACTIONS(1756), 1, sym_opacity_modifier, + sym__upname, + [78808] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(2866), 1, + anon_sym_DASH_GT, + STATE(1240), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(634), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [43906] = 4, + ACTIONS(1754), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78836] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1688), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(363), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(361), 12, - anon_sym_if, + ACTIONS(1686), 11, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43935] = 4, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78860] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(71), 1, + anon_sym_LBRACE, + STATE(1264), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(445), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(443), 12, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [43964] = 13, + ACTIONS(1882), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78885] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2868), 1, + anon_sym_RPAREN, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1716), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1759), 1, - anon_sym_RPAREN, - STATE(1109), 1, - sym_data_constructor_argument, - STATE(1185), 1, - sym_identifier, - STATE(1246), 1, + STATE(1387), 1, sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1547), 1, + sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1684), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1099), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44011] = 4, + [78926] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2874), 1, + anon_sym_DOT, + ACTIONS(2876), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(351), 5, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_PIPE, - ACTIONS(349), 12, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [44040] = 11, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1722), 1, + ACTIONS(1746), 9, + anon_sym_RBRACE, + anon_sym_AT, anon_sym_import, - ACTIONS(1724), 1, - anon_sym_const, - ACTIONS(1726), 1, - anon_sym_external, - ACTIONS(1728), 1, anon_sym_type, - ACTIONS(1730), 1, + anon_sym_const, anon_sym_fn, - ACTIONS(1732), 1, + anon_sym_external, sym_visibility_modifier, - ACTIONS(1734), 1, sym_opacity_modifier, - ACTIONS(1761), 1, - anon_sym_RBRACE, + [78951] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(634), 9, - sym__statement, - sym_import, - sym_constant, - sym_external_type, - sym_external_function, - sym_function, - sym_type_definition, - sym_type_alias, - aux_sym_target_group_repeat1, - [44083] = 13, + ACTIONS(1858), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [78972] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1716), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1763), 1, + ACTIONS(2878), 1, anon_sym_RPAREN, - STATE(998), 1, - sym_data_constructor_argument, - STATE(1185), 1, - sym_identifier, - STATE(1246), 1, + STATE(1387), 1, sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1547), 1, + sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1684), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1099), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44130] = 12, + [79013] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1765), 1, - anon_sym_RPAREN, - ACTIONS(1767), 1, - sym__name, - STATE(1149), 1, - sym_external_function_parameter, - STATE(1154), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1174), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44174] = 12, + ACTIONS(1774), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79034] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1769), 1, - anon_sym_RPAREN, - STATE(1084), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44218] = 12, + ACTIONS(2880), 11, + anon_sym_if, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [79055] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1716), 1, - sym__name, - ACTIONS(1718), 1, - sym__upname, - STATE(1109), 1, - sym_data_constructor_argument, - STATE(1185), 1, - sym_identifier, - STATE(1246), 1, - sym_label, + ACTIONS(2882), 1, + anon_sym_LBRACE, + ACTIONS(2884), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1099), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44262] = 12, + ACTIONS(1782), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79080] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1771), 1, - anon_sym_RPAREN, - STATE(1149), 1, - sym_external_function_parameter, - STATE(1154), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1174), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44306] = 12, + ACTIONS(1876), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79101] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1773), 1, - anon_sym_RPAREN, - STATE(1007), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44350] = 12, + ACTIONS(1890), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79122] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1775), 1, - anon_sym_RPAREN, - STATE(1020), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44394] = 12, + ACTIONS(1852), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79143] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1777), 1, - anon_sym_RPAREN, - STATE(1084), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44438] = 12, + ACTIONS(1902), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79164] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1779), 1, - anon_sym_RPAREN, - STATE(1084), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, + ACTIONS(71), 1, + anon_sym_LBRACE, + STATE(1256), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44482] = 12, + ACTIONS(1824), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79189] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1781), 1, + ACTIONS(2886), 1, anon_sym_RPAREN, - STATE(944), 1, - sym_external_function_parameter, - STATE(1154), 1, + STATE(1387), 1, + sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1424), 1, + sym_function_parameter, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1174), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44526] = 12, + [79230] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1783), 1, - anon_sym_RPAREN, - STATE(1084), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44570] = 11, + ACTIONS(1894), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_DASH_GT, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79251] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1785), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44611] = 11, + ACTIONS(1816), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_EQ, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79272] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1787), 1, + ACTIONS(2888), 1, anon_sym_RPAREN, - STATE(1185), 1, + STATE(1387), 1, + sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1684), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(999), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44652] = 11, + [79313] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1789), 1, + ACTIONS(2890), 1, anon_sym_RPAREN, - STATE(1185), 1, + STATE(1387), 1, + sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1684), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44693] = 11, + [79354] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1791), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, + ACTIONS(2892), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44734] = 11, + ACTIONS(1842), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79379] = 13, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1793), 1, + ACTIONS(2896), 1, anon_sym_RPAREN, - STATE(1185), 1, + STATE(1387), 1, + sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1452), 1, + sym_function_parameter, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1003), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44775] = 11, + [79420] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1770), 11, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, + anon_sym_DASH_GT, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79441] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44816] = 11, + ACTIONS(1868), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79461] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2115), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, sym__upname, - ACTIONS(1767), 1, - sym__name, - ACTIONS(1797), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, + [79481] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44857] = 11, + ACTIONS(1938), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + sym__upname, + [79501] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1886), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79521] = 12, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(2872), 1, sym__name, - ACTIONS(1799), 1, - anon_sym_RPAREN, - STATE(1185), 1, + STATE(1387), 1, + sym_label, + STATE(1390), 1, + sym__name_param, + STATE(1394), 1, + sym__labeled_discard_param, + STATE(1404), 1, + sym__labeled_name_param, + STATE(1405), 1, + sym__discard_param, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1684), 1, + sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1022), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44898] = 11, + [79559] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1149), 1, - sym_external_function_parameter, - STATE(1154), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1174), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44939] = 11, + ACTIONS(1898), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79579] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(1778), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_as, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79599] = 10, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(233), 1, sym__upname, - ACTIONS(1767), 1, + ACTIONS(2898), 1, + anon_sym_DASH, + ACTIONS(2900), 1, sym__name, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, + STATE(589), 1, + sym_label, + STATE(891), 1, + sym_constructor_name, + STATE(1076), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [44980] = 11, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + [79633] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1084), 1, - sym_type_argument, - STATE(1185), 1, - sym_identifier, + ACTIONS(2904), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1091), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45021] = 5, + ACTIONS(2902), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_as, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [79655] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1805), 1, + ACTIONS(2906), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1807), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1803), 9, + ACTIONS(1764), 9, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45049] = 10, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79677] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2095), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, + [79697] = 3, + ACTIONS(3), 1, + sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1258), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45087] = 10, + ACTIONS(1918), 10, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + sym__upname, + [79717] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(101), 1, sym__upname, - ACTIONS(1767), 1, + ACTIONS(2908), 1, + anon_sym_DASH, + ACTIONS(2910), 1, sym__name, - STATE(1185), 1, - sym_identifier, + STATE(549), 1, + sym_constructor_name, + STATE(1053), 1, + sym_integer, + STATE(1058), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1260), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45125] = 10, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + [79751] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, + ACTIONS(2912), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1272), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45163] = 10, + ACTIONS(1862), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79773] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, - anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_fn, - ACTIONS(1813), 1, - sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, - sym__upname, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(383), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(497), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45201] = 10, + ACTIONS(1964), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(795), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45239] = 10, + ACTIONS(2107), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79811] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, + ACTIONS(2916), 1, + anon_sym_as, + ACTIONS(2918), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(907), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45277] = 10, + ACTIONS(2914), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + [79834] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + ACTIONS(2920), 1, sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1268), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45315] = 10, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + STATE(1775), 3, + sym__pattern_bit_string_segment_argument, + sym_integer, + sym_identifier, + [79861] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(725), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45353] = 10, + ACTIONS(407), 9, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [79880] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1142), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45391] = 5, + ACTIONS(482), 9, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [79899] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1819), 1, - anon_sym_LPAREN, - STATE(713), 1, - sym_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1091), 12, - anon_sym_LBRACE, + ACTIONS(1842), 9, anon_sym_RBRACE, + anon_sym_AT, anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, anon_sym_type, + anon_sym_const, anon_sym_fn, + anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [45419] = 4, + [79918] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(329), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1212), 12, - anon_sym_LBRACE, + ACTIONS(2008), 9, anon_sym_RBRACE, + anon_sym_AT, anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, anon_sym_type, + anon_sym_const, anon_sym_fn, + anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [45445] = 10, + [79937] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1281), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45483] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(2048), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1179), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45521] = 10, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79956] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, - anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_fn, - ACTIONS(1813), 1, - sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, - sym__upname, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(383), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(459), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45559] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(2137), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1089), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45597] = 10, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79975] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(790), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45635] = 10, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, + ACTIONS(2012), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1286), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45673] = 10, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [79994] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(781), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45711] = 4, + ACTIONS(2042), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80013] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1823), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1821), 10, + ACTIONS(2091), 9, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45737] = 10, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80032] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1223), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45775] = 4, + ACTIONS(1934), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80051] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1827), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1825), 10, + ACTIONS(2028), 9, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45801] = 4, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80070] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1831), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1829), 10, + ACTIONS(2099), 9, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [45827] = 3, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80089] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1226), 14, - anon_sym_LBRACE, + ACTIONS(1996), 9, anon_sym_RBRACE, + anon_sym_AT, anon_sym_import, - anon_sym_as, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, anon_sym_type, + anon_sym_const, anon_sym_fn, + anon_sym_external, sym_visibility_modifier, sym_opacity_modifier, - [45851] = 10, + [80108] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1254), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45889] = 10, + ACTIONS(2123), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80127] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, - anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_fn, - ACTIONS(1813), 1, - sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, - sym__upname, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(383), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(487), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45927] = 10, + ACTIONS(2004), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80146] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(711), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [45965] = 10, + ACTIONS(403), 9, + anon_sym_if, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80165] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, - anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_fn, - ACTIONS(1813), 1, - sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, - sym__upname, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(383), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(472), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46003] = 4, + ACTIONS(1910), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80184] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1835), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1833), 10, + ACTIONS(1972), 9, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46029] = 10, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80203] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1241), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46067] = 10, + ACTIONS(1968), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80222] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1809), 1, - anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_fn, - ACTIONS(1813), 1, - sym__discard_name, - ACTIONS(1815), 1, - sym__name, - ACTIONS(1817), 1, - sym__upname, - STATE(1255), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(383), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(460), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46105] = 10, + ACTIONS(1980), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80241] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, + ACTIONS(2922), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1244), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46143] = 10, + ACTIONS(2902), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80262] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, - sym__name, - STATE(1185), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1264), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46181] = 5, + ACTIONS(1944), 9, + anon_sym_RBRACE, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80281] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1837), 1, - anon_sym_DOT, + ACTIONS(2924), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1807), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1803), 9, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46209] = 4, + ACTIONS(2902), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_GT_GT, + anon_sym_LT_GT, + anon_sym_DOT_DOT, + [80302] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1841), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1839), 10, + ACTIONS(1906), 9, anon_sym_RBRACE, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46235] = 10, + anon_sym_AT, + anon_sym_import, + anon_sym_type, + anon_sym_const, + anon_sym_fn, + anon_sym_external, + sym_visibility_modifier, + sym_opacity_modifier, + [80321] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1708), 1, - anon_sym_POUND, - ACTIONS(1712), 1, - anon_sym_fn, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1767), 1, + ACTIONS(449), 1, sym__name, - STATE(1185), 1, + ACTIONS(2870), 1, + sym__discard_name, + ACTIONS(2926), 1, + anon_sym_RPAREN, + STATE(1375), 1, + sym__name_param, + STATE(1402), 1, + sym__discard_param, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1611), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(672), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1094), 6, - sym__type, - sym_type_hole, - sym_tuple_type, - sym_function_type, - sym_type, - sym_type_var, - [46273] = 7, + [80353] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1825), 2, + ACTIONS(474), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46304] = 5, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80371] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1851), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1825), 5, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46331] = 6, + ACTIONS(714), 8, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80389] = 10, ACTIONS(3), 1, sym_module_comment, + ACTIONS(449), 1, + sym__name, + ACTIONS(2870), 1, + sym__discard_name, + ACTIONS(2928), 1, + anon_sym_RPAREN, + STATE(1375), 1, + sym__name_param, + STATE(1402), 1, + sym__discard_param, + STATE(1547), 1, + sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1611), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1825), 3, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(1847), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46360] = 5, + [80421] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2930), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1847), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - ACTIONS(1825), 5, + ACTIONS(2902), 7, + anon_sym_if, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46387] = 5, + anon_sym_LT_GT, + anon_sym_PIPE, + anon_sym_LT_DASH, + [80441] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1857), 1, - anon_sym_LPAREN, - STATE(744), 1, - sym_record_pattern_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1855), 11, + ACTIONS(706), 8, anon_sym_if, - anon_sym_as, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, anon_sym_COLON, + anon_sym_as, anon_sym_DASH_GT, - anon_sym_DOT_DOT, + anon_sym_LT_GT, anon_sym_PIPE, - [46414] = 8, + anon_sym_LT_DASH, + [80459] = 10, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1843), 1, - anon_sym_AMP_AMP, - ACTIONS(1859), 1, - anon_sym_DASH_GT, - ACTIONS(1861), 1, - anon_sym_PIPE_PIPE, + ACTIONS(449), 1, + sym__name, + ACTIONS(2870), 1, + sym__discard_name, + ACTIONS(2932), 1, + anon_sym_RPAREN, + STATE(1375), 1, + sym__name_param, + STATE(1402), 1, + sym__discard_param, + STATE(1543), 1, + sym_anonymous_function_parameter, + STATE(1547), 1, + sym_identifier, + STATE(1549), 1, + sym_discard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1845), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1847), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1849), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46447] = 11, + [80491] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1805), 1, + sym_data_constructors, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80518] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RPAREN, - STATE(1146), 1, - sym_constant_type_argument, - STATE(1185), 1, + ACTIONS(2936), 1, + anon_sym_RBRACE, + ACTIONS(2938), 1, + anon_sym_type, + STATE(1588), 1, sym_identifier, + STATE(1589), 1, + sym_constructor_name, + STATE(1631), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1126), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46486] = 11, + [80547] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1714), 1, + ACTIONS(2870), 1, sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(987), 1, - sym_constant_type_argument, - STATE(1185), 1, + STATE(1375), 1, + sym__name_param, + STATE(1402), 1, + sym__discard_param, + STATE(1547), 1, sym_identifier, + STATE(1549), 1, + sym_discard, + STATE(1611), 1, + sym_anonymous_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1126), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46525] = 8, + [80576] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1869), 1, - anon_sym_RBRACE, - ACTIONS(1871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1873), 1, - anon_sym_AMP_AMP, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1803), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1851), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46558] = 7, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80603] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1873), 1, - anon_sym_AMP_AMP, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2938), 1, + anon_sym_type, + ACTIONS(2940), 1, + anon_sym_RBRACE, + STATE(1588), 1, + sym_identifier, + STATE(1589), 1, + sym_constructor_name, + STATE(1631), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1825), 2, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1851), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46589] = 6, + [80632] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2942), 1, + anon_sym_RBRACE, + ACTIONS(2944), 1, + anon_sym_AT, + ACTIONS(2947), 1, + sym__upname, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1825), 3, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(1851), 4, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - ACTIONS(1853), 4, - anon_sym_LT_DOT, - anon_sym_LT_EQ_DOT, - anon_sym_GT_DOT, - anon_sym_GT_EQ_DOT, - [46618] = 3, + STATE(1279), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80659] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1768), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1159), 13, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46641] = 11, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80686] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(1146), 1, - sym_constant_type_argument, - STATE(1185), 1, + ACTIONS(2938), 1, + anon_sym_type, + ACTIONS(2950), 1, + anon_sym_RBRACE, + STATE(1588), 1, sym_identifier, + STATE(1589), 1, + sym_constructor_name, + STATE(1631), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1126), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46680] = 3, + [80715] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1790), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1350), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46702] = 3, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80742] = 8, ACTIONS(3), 1, sym_module_comment, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + ACTIONS(2952), 1, + anon_sym_RBRACE, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1430), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46724] = 3, + STATE(1279), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80769] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1252), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, + ACTIONS(2954), 7, + anon_sym_if, anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46746] = 10, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_DOT_DOT, + anon_sym_PIPE, + [80786] = 9, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(99), 1, sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_RPAREN, - STATE(1185), 1, + ACTIONS(2938), 1, + anon_sym_type, + ACTIONS(2956), 1, + anon_sym_RBRACE, + STATE(1588), 1, sym_identifier, + STATE(1589), 1, + sym_constructor_name, + STATE(1631), 1, + sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46782] = 10, + [80815] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(451), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - STATE(1146), 1, - sym_constant_type_argument, - STATE(1185), 1, - sym_identifier, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1754), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1126), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [46818] = 5, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80842] = 8, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1881), 1, - anon_sym_SLASH, - STATE(716), 1, - aux_sym_module_repeat1, + ACTIONS(451), 1, + sym__upname, + ACTIONS(2934), 1, + anon_sym_AT, + STATE(1336), 1, + sym_constructor_name, + STATE(1699), 1, + sym_attribute, + STATE(1860), 1, + sym_data_constructors, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1037), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46844] = 3, + STATE(1283), 2, + sym_data_constructor, + aux_sym_data_constructors_repeat1, + [80869] = 9, ACTIONS(3), 1, sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2938), 1, + anon_sym_type, + ACTIONS(2958), 1, + anon_sym_RBRACE, + STATE(1465), 1, + sym_unqualified_import, + STATE(1588), 1, + sym_identifier, + STATE(1589), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1470), 12, - anon_sym_LBRACE, + [80898] = 9, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2938), 1, + anon_sym_type, + ACTIONS(2960), 1, anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, + STATE(1587), 1, + sym_unqualified_import, + STATE(1588), 1, + sym_identifier, + STATE(1589), 1, + sym_constructor_name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [80927] = 8, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(101), 1, + sym__upname, + ACTIONS(2938), 1, anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46866] = 3, + STATE(1588), 1, + sym_identifier, + STATE(1589), 1, + sym_constructor_name, + STATE(1631), 1, + sym_unqualified_import, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [80953] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(1801), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1272), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46888] = 3, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + [80975] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2962), 1, + anon_sym_DQUOTE2, + ACTIONS(2966), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1244), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46910] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [80997] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2968), 1, + anon_sym_DQUOTE2, + ACTIONS(2970), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1342), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46932] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1321), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81019] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2972), 1, + anon_sym_DQUOTE2, + ACTIONS(2974), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1286), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46954] = 5, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1298), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81041] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1884), 1, - anon_sym_SLASH, - STATE(716), 1, - aux_sym_module_repeat1, + ACTIONS(2976), 1, + anon_sym_DQUOTE2, + ACTIONS(2978), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1052), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [46980] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1292), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81063] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2982), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1370), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, + ACTIONS(2914), 4, + anon_sym_if, anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47002] = 3, + anon_sym_DASH_GT, + anon_sym_PIPE, + [81083] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(1211), 1, + sym_type_name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1454), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47024] = 3, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81107] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(2984), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1302), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47046] = 5, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81129] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(2986), 1, + anon_sym_DQUOTE2, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81151] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1884), 1, - anon_sym_SLASH, - STATE(722), 1, - aux_sym_module_repeat1, + ACTIONS(2988), 1, + anon_sym_DQUOTE2, + ACTIONS(2990), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1044), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47072] = 10, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1299), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81173] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1886), 1, - anon_sym_RPAREN, - STATE(1185), 1, - sym_identifier, + ACTIONS(1110), 1, + sym__decimal, + ACTIONS(2992), 1, + anon_sym_DASH, + STATE(567), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(971), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47108] = 10, + ACTIONS(1108), 3, + sym__hex, + sym__octal, + sym__binary, + [81195] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(2791), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_RPAREN, - STATE(1185), 1, + ACTIONS(2920), 1, + sym__name, + STATE(770), 1, + sym_type_name, + STATE(1847), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, + STATE(641), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47144] = 3, + [81219] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1040), 1, + sym__decimal, + ACTIONS(2994), 1, + anon_sym_DASH, + STATE(268), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1310), 12, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_COMMA, - anon_sym_const, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47166] = 5, + ACTIONS(1038), 3, + sym__hex, + sym__octal, + sym__binary, + [81241] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1890), 1, - anon_sym_LPAREN, - STATE(763), 1, - sym_type_parameters, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(1247), 1, + sym_type_name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1107), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47192] = 3, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81265] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2791), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(771), 1, + sym_type_name, + STATE(1847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1892), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47213] = 13, + STATE(641), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81289] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1894), 1, - anon_sym_RPAREN, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, sym__name, - STATE(865), 1, - sym__labeled_discard_param, - STATE(885), 1, - sym__discard_param, - STATE(886), 1, - sym__labeled_name_param, - STATE(888), 1, - sym__name_param, - STATE(889), 1, - sym_label, - STATE(915), 1, + STATE(1748), 1, + sym_type_name, + STATE(1770), 1, sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1069), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [47254] = 3, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81313] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(207), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1900), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47275] = 3, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + [81335] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(229), 1, + sym__decimal, + ACTIONS(2898), 1, + anon_sym_DASH, + STATE(887), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1902), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47296] = 3, + ACTIONS(227), 3, + sym__hex, + sym__octal, + sym__binary, + [81357] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(1712), 1, + sym_type_name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1904), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47317] = 13, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81381] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, sym__name, - ACTIONS(1906), 1, - anon_sym_RPAREN, - STATE(865), 1, - sym__labeled_discard_param, - STATE(885), 1, - sym__discard_param, - STATE(886), 1, - sym__labeled_name_param, - STATE(888), 1, - sym__name_param, - STATE(889), 1, - sym_label, - STATE(915), 1, + STATE(1671), 1, + sym_type_name, + STATE(1770), 1, sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1069), 1, - sym_function_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [47358] = 3, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81405] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(97), 1, + sym__decimal, + ACTIONS(2908), 1, + anon_sym_DASH, + STATE(646), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1908), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47379] = 3, + ACTIONS(95), 3, + sym__hex, + sym__octal, + sym__binary, + [81427] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(2996), 1, + anon_sym_DASH, + STATE(207), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1910), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47400] = 3, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + [81449] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(2998), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1912), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47421] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81471] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(1222), 1, + sym_type_name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1914), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47442] = 3, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81495] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2791), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(669), 1, + sym_type_name, + STATE(1847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1916), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47463] = 3, + STATE(641), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81519] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2723), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(1245), 1, + sym_type_name, + STATE(1770), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1918), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47484] = 9, + STATE(1167), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81543] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - STATE(1185), 1, - sym_identifier, + ACTIONS(59), 1, + sym__decimal, + ACTIONS(3000), 1, + anon_sym_DASH, + STATE(82), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, - sym_type_identifier, - sym_remote_type_identifier, - STATE(1200), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47517] = 3, + ACTIONS(57), 3, + sym__hex, + sym__octal, + sym__binary, + [81565] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3002), 1, + anon_sym_DQUOTE2, + ACTIONS(3004), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1920), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47538] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1320), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81587] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3006), 1, + anon_sym_DQUOTE2, + ACTIONS(3008), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1922), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47559] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1330), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81609] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(3010), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1924), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47580] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81631] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(3012), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1926), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47601] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81653] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3014), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1928), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(1764), 5, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47622] = 4, + [81671] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1039), 1, - anon_sym_SLASH, + ACTIONS(3016), 1, + anon_sym_DQUOTE2, + ACTIONS(3021), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1037), 10, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_DOT, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47645] = 3, + ACTIONS(3018), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81693] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1076), 1, + sym__decimal, + ACTIONS(3024), 1, + anon_sym_DASH, + STATE(17), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1930), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47666] = 3, + ACTIONS(1074), 3, + sym__hex, + sym__octal, + sym__binary, + [81715] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3026), 1, + anon_sym_DQUOTE2, + ACTIONS(3028), 1, + sym_quoted_content, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1932), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47687] = 3, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1313), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81737] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2791), 1, + sym__upname, + ACTIONS(2920), 1, + sym__name, + STATE(680), 1, + sym_type_name, + STATE(1847), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1934), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47708] = 9, + STATE(641), 2, + sym_type_identifier, + sym_remote_type_identifier, + [81761] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1714), 1, - sym__discard_name, - ACTIONS(1718), 1, + ACTIONS(2723), 1, sym__upname, - ACTIONS(1863), 1, - anon_sym_POUND, - STATE(1185), 1, + ACTIONS(2920), 1, + sym__name, + STATE(1620), 1, + sym_type_name, + STATE(1770), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(835), 2, + STATE(1167), 2, sym_type_identifier, sym_remote_type_identifier, - STATE(1162), 4, - sym__constant_type, - sym_constant_tuple_type, - sym_constant_type, - sym_type_hole, - [47741] = 3, + [81785] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(447), 1, + sym__decimal, + ACTIONS(1954), 1, + anon_sym_DASH, + STATE(1822), 1, + sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1936), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47762] = 3, + ACTIONS(445), 3, + sym__hex, + sym__octal, + sym__binary, + [81807] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(3030), 1, + anon_sym_DQUOTE2, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81829] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2966), 1, + sym_quoted_content, + ACTIONS(3032), 1, + anon_sym_DQUOTE2, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1938), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47783] = 13, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1323), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81851] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3034), 1, + anon_sym_DQUOTE2, + ACTIONS(3036), 1, + sym_quoted_content, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2964), 2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + STATE(1329), 2, + sym_escape_sequence, + aux_sym_string_repeat1, + [81873] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, - sym__name, - ACTIONS(1940), 1, + ACTIONS(2020), 1, + anon_sym_DOT_DOT, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, anon_sym_RPAREN, - STATE(865), 1, - sym__labeled_discard_param, - STATE(885), 1, - sym__discard_param, - STATE(886), 1, - sym__labeled_name_param, - STATE(888), 1, - sym__name_param, - STATE(889), 1, - sym_label, - STATE(915), 1, - sym_identifier, - STATE(957), 1, - sym_function_parameter, - STATE(993), 1, - sym_discard, + STATE(1341), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1815), 1, + sym_pattern_spread, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [47824] = 3, + [81896] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3042), 1, + anon_sym_LPAREN, + STATE(1602), 1, + sym_constant_type_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1902), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(3044), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47845] = 3, + anon_sym_EQ, + [81915] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1142), 1, + anon_sym_LPAREN, + ACTIONS(1830), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1942), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(616), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47866] = 3, + anon_sym_GT_GT, + [81934] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(449), 1, + sym__name, + ACTIONS(2870), 1, + sym__discard_name, + ACTIONS(3046), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1944), 11, - anon_sym_if, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47887] = 3, + STATE(1798), 2, + sym_identifier, + sym_discard, + [81955] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1595), 1, + sym_data_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1946), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(3048), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [81974] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2213), 1, + anon_sym_DOT_DOT, + ACTIONS(3052), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3054), 1, anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [47908] = 3, + STATE(1344), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1811), 1, + sym_list_pattern_tail, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [81997] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3056), 1, + anon_sym_type, + ACTIONS(3058), 1, + anon_sym_const, + ACTIONS(3060), 1, + anon_sym_fn, + ACTIONS(3062), 1, + anon_sym_external, + ACTIONS(3064), 1, + sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1928), 11, - anon_sym_if, - anon_sym_as, + [82020] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3066), 1, anon_sym_COMMA, - anon_sym_EQ, + STATE(1339), 1, + aux_sym_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(2279), 3, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_DOT_DOT, - anon_sym_PIPE, - [47929] = 3, + [82039] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + sym__discard_name, + ACTIONS(393), 1, + sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1948), 11, - anon_sym_if, - anon_sym_as, + ACTIONS(482), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_DASH_GT, + [82058] = 7, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2020), 1, anon_sym_DOT_DOT, - anon_sym_PIPE, - [47950] = 3, + ACTIONS(2089), 1, + anon_sym_RPAREN, + ACTIONS(3069), 1, + anon_sym_COMMA, + STATE(1353), 1, + aux_sym_record_pattern_arguments_repeat1, + STATE(1858), 1, + sym_pattern_spread, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [82081] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3073), 1, + anon_sym_COMMA, + STATE(1342), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1358), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [47970] = 12, + ACTIONS(3071), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [82100] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1898), 1, - sym__name, - STATE(865), 1, - sym__labeled_discard_param, - STATE(885), 1, - sym__discard_param, - STATE(886), 1, - sym__labeled_name_param, - STATE(888), 1, - sym__name_param, - STATE(889), 1, - sym_label, - STATE(915), 1, - sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1069), 1, - sym_function_parameter, + ACTIONS(1126), 1, + anon_sym_LPAREN, + ACTIONS(1762), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48008] = 3, + ACTIONS(598), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_GT_GT, + [82119] = 7, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2213), 1, + anon_sym_DOT_DOT, + ACTIONS(3076), 1, + anon_sym_COMMA, + ACTIONS(3078), 1, + anon_sym_RBRACK, + STATE(1349), 1, + aux_sym_case_clause_pattern_repeat1, + STATE(1837), 1, + sym_list_pattern_tail, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1264), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48028] = 3, + [82142] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3082), 1, + anon_sym_COMMA, + STATE(1348), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1950), 10, + ACTIONS(3080), 3, anon_sym_if, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_DASH_GT, - anon_sym_DOT_DOT, anon_sym_PIPE, - [48048] = 3, + [82161] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3050), 1, + anon_sym_LPAREN, + STATE(1480), 1, + sym_data_constructor_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1334), 10, - anon_sym_LBRACE, + ACTIONS(3084), 3, anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48068] = 3, + anon_sym_AT, + sym__upname, + [82180] = 7, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1382), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, + ACTIONS(3086), 1, anon_sym_type, + ACTIONS(3088), 1, + anon_sym_const, + ACTIONS(3090), 1, anon_sym_fn, - sym_visibility_modifier, + ACTIONS(3092), 1, + anon_sym_external, + ACTIONS(3094), 1, sym_opacity_modifier, - [48088] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1952), 1, - anon_sym_DOT, - ACTIONS(1954), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1113), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48112] = 3, + [82203] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3098), 1, + anon_sym_COMMA, + STATE(1342), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1260), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48132] = 7, + ACTIONS(3096), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [82222] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(1956), 1, - anon_sym_DASH, - ACTIONS(1958), 1, - sym__name, + ACTIONS(3100), 1, + anon_sym_COMMA, + STATE(1349), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - STATE(1265), 3, - sym__pattern_bit_string_segment_argument, - sym_integer, - sym_identifier, - [48159] = 5, + ACTIONS(3071), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [82241] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1960), 1, - anon_sym_DOT, - ACTIONS(1962), 1, + ACTIONS(2980), 1, anon_sym_as, + ACTIONS(3103), 1, + anon_sym_LT_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1964), 7, + ACTIONS(2914), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_DOT_DOT, - [48182] = 3, + anon_sym_LT_DASH, + [82260] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3107), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1171), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48201] = 4, + ACTIONS(3105), 3, + sym__hex, + sym__octal, + sym__binary, + [82276] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1966), 1, - anon_sym_as, + ACTIONS(3111), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1220), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48222] = 3, + ACTIONS(3109), 3, + sym__hex, + sym__octal, + sym__binary, + [82292] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3113), 1, + anon_sym_COMMA, + STATE(1353), 1, + aux_sym_record_pattern_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1216), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48241] = 3, + ACTIONS(3116), 2, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [82310] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(892), 1, + anon_sym_RBRACK, + ACTIONS(894), 1, + anon_sym_DOT_DOT, + ACTIONS(3118), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1238), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48260] = 3, + [82330] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(2870), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1232), 9, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_as, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48279] = 3, + STATE(1249), 2, + sym_identifier, + sym_discard, + [82348] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1418), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48297] = 3, + ACTIONS(3120), 4, + sym_quoted_content, + anon_sym_DQUOTE2, + aux_sym_escape_sequence_token1, + aux_sym_escape_sequence_token2, + [82362] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + ACTIONS(3122), 1, + sym__name, + STATE(61), 1, + sym_constructor_name, + STATE(747), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1414), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48315] = 3, + [82382] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(391), 1, + anon_sym_COLON, + ACTIONS(482), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1446), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48333] = 3, + ACTIONS(1872), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82400] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3124), 1, + anon_sym_PIPE, + STATE(1403), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1298), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48351] = 3, + ACTIONS(2231), 2, + anon_sym_if, + anon_sym_DASH_GT, + [82418] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3128), 1, + anon_sym_PIPE, + STATE(1359), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1438), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48369] = 3, + ACTIONS(3126), 2, + anon_sym_if, + anon_sym_DASH_GT, + [82436] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2920), 1, + sym__name, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1440), 1, + sym_anonymous_function_parameters, + STATE(1683), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1330), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48387] = 8, + [82456] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, + ACTIONS(3134), 1, sym__decimal, - ACTIONS(315), 1, - sym__upname, - ACTIONS(1058), 1, - anon_sym_DASH, - STATE(296), 1, - sym_constructor_name, - STATE(681), 1, - sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(307), 3, + ACTIONS(3132), 3, sym__hex, sym__octal, sym__binary, - [48415] = 3, + [82472] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(451), 1, + sym__upname, + ACTIONS(3136), 1, + sym__name, + STATE(172), 1, + sym_constructor_name, + STATE(589), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1458), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48433] = 10, + [82492] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1968), 1, - anon_sym_RPAREN, - STATE(877), 1, - sym__discard_param, - STATE(878), 1, - sym__name_param, - STATE(915), 1, - sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1096), 1, - sym_anonymous_function_parameter, + ACTIONS(3140), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48465] = 10, + ACTIONS(3138), 3, + sym__hex, + sym__octal, + sym__binary, + [82508] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(3136), 1, sym__name, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(1970), 1, - anon_sym_RPAREN, - STATE(877), 1, - sym__discard_param, - STATE(878), 1, - sym__name_param, - STATE(915), 1, - sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1096), 1, - sym_anonymous_function_parameter, + STATE(1422), 1, + sym_record_update_argument, + STATE(1829), 1, + sym_record_update_arguments, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48497] = 4, + [82528] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1962), 1, - anon_sym_as, + ACTIONS(3144), 1, + anon_sym_DASH, + STATE(1396), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1964), 7, + ACTIONS(3142), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT_DOT, - [48517] = 3, + [82546] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3136), 1, + sym__name, + STATE(1422), 1, + sym_record_update_argument, + STATE(1789), 1, + sym_record_update_arguments, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1462), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48535] = 3, + [82566] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(99), 1, + sym__name, + ACTIONS(2870), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1450), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48553] = 3, + STATE(1250), 2, + sym_identifier, + sym_discard, + [82584] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(61), 1, + sym__name, + ACTIONS(3146), 1, + sym__discard_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1466), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48571] = 8, + STATE(768), 2, + sym_identifier, + sym_discard, + [82602] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1143), 1, + ACTIONS(3150), 1, sym__decimal, - ACTIONS(1147), 1, - sym__upname, - ACTIONS(1972), 1, - anon_sym_DASH, - STATE(630), 1, - sym_constructor_name, - STATE(681), 1, - sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1141), 3, + ACTIONS(3148), 3, sym__hex, sym__octal, sym__binary, - [48599] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1362), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48617] = 3, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1398), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48635] = 3, + [82618] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3136), 1, + sym__name, + ACTIONS(3152), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym_record_update_argument, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1410), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48653] = 3, + [82638] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3136), 1, + sym__name, + STATE(1422), 1, + sym_record_update_argument, + STATE(1865), 1, + sym_record_update_arguments, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1306), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48671] = 10, + [82658] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, + ACTIONS(61), 1, sym__name, - ACTIONS(1896), 1, + ACTIONS(3146), 1, sym__discard_name, - ACTIONS(1974), 1, - anon_sym_RPAREN, - STATE(877), 1, - sym__discard_param, - STATE(878), 1, - sym__name_param, - STATE(915), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + STATE(755), 2, sym_identifier, - STATE(993), 1, sym_discard, - STATE(1002), 1, - sym_anonymous_function_parameter, + [82676] = 6, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3136), 1, + sym__name, + STATE(1422), 1, + sym_record_update_argument, + STATE(1867), 1, + sym_label, + STATE(1884), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48703] = 3, + [82696] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1707), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1402), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48721] = 3, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82714] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3160), 1, + anon_sym_DASH, + STATE(1376), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1346), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48739] = 3, + ACTIONS(3158), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [82732] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(914), 1, + anon_sym_RBRACK, + ACTIONS(916), 1, + anon_sym_DOT_DOT, + ACTIONS(3163), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1426), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48757] = 3, + [82752] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3136), 1, + sym__name, + STATE(1422), 1, + sym_record_update_argument, + STATE(1867), 1, + sym_label, + STATE(1880), 1, + sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1248), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48775] = 3, + [82772] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3167), 1, + anon_sym_DASH, + STATE(1385), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1322), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48793] = 3, + ACTIONS(3165), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [82790] = 6, ACTIONS(3), 1, sym_module_comment, + ACTIONS(910), 1, + anon_sym_RBRACK, + ACTIONS(912), 1, + anon_sym_DOT_DOT, + ACTIONS(3169), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1422), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48811] = 3, + [82810] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3173), 1, + anon_sym_DASH, + STATE(1381), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1442), 8, - anon_sym_RBRACE, - anon_sym_import, - anon_sym_const, - anon_sym_external, - anon_sym_type, - anon_sym_fn, - sym_visibility_modifier, - sym_opacity_modifier, - [48829] = 9, + ACTIONS(3171), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [82828] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1896), 1, - sym__discard_name, - STATE(877), 1, - sym__discard_param, - STATE(878), 1, - sym__name_param, - STATE(915), 1, - sym_identifier, - STATE(993), 1, - sym_discard, - STATE(1096), 1, - sym_anonymous_function_parameter, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1606), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48858] = 3, + ACTIONS(3176), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [82846] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3178), 1, + anon_sym_DASH, + STATE(1398), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1976), 7, - anon_sym_if, + ACTIONS(2032), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - [48875] = 7, + anon_sym_GT_GT, + [82864] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(803), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(3182), 1, + anon_sym_DASH, + STATE(1383), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [48899] = 6, + ACTIONS(3180), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [82882] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(1956), 1, + ACTIONS(3184), 1, anon_sym_DASH, - STATE(148), 1, - sym_integer, + STATE(1376), 1, + aux_sym_pattern_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - [48921] = 8, + ACTIONS(2024), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [82900] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, + ACTIONS(101), 1, sym__upname, - ACTIONS(1978), 1, - anon_sym_RBRACE, - ACTIONS(1980), 1, + ACTIONS(2910), 1, sym__name, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1129), 1, - sym_unqualified_import, + STATE(549), 1, + sym_constructor_name, + STATE(589), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48947] = 8, + [82920] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, + ACTIONS(449), 1, sym__name, - ACTIONS(1982), 1, - anon_sym_RBRACE, - STATE(931), 1, - sym_unqualified_import, - STATE(932), 1, + ACTIONS(2870), 1, + sym__discard_name, + STATE(1579), 1, + sym_discard, + STATE(1580), 1, sym_identifier, - STATE(934), 1, - sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [48973] = 7, + [82940] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(1171), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(922), 1, + anon_sym_RBRACK, + ACTIONS(924), 1, + anon_sym_DOT_DOT, + ACTIONS(3186), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [48997] = 7, + [82960] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(1118), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(938), 1, + anon_sym_RBRACK, + ACTIONS(940), 1, + anon_sym_DOT_DOT, + ACTIONS(3188), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49021] = 6, + [82980] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(53), 1, - sym__decimal, - ACTIONS(1984), 1, - anon_sym_DASH, - STATE(17), 1, - sym_integer, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1697), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(51), 3, - sym__hex, - sym__octal, - sym__binary, - [49043] = 7, + ACTIONS(3190), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [82998] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, + ACTIONS(3136), 1, sym__name, - STATE(1157), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + STATE(1422), 1, + sym_record_update_argument, + STATE(1764), 1, + sym_record_update_arguments, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49067] = 7, + [83018] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, - sym__upname, - ACTIONS(1958), 1, + ACTIONS(3136), 1, sym__name, - STATE(467), 1, - sym_type_name, - STATE(1255), 1, - sym_identifier, + STATE(1422), 1, + sym_record_update_argument, + STATE(1759), 1, + sym_record_update_arguments, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49091] = 6, + [83038] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, + ACTIONS(3194), 1, sym__decimal, - ACTIONS(1956), 1, - anon_sym_DASH, - STATE(1284), 1, - sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, + ACTIONS(3192), 3, sym__hex, sym__octal, sym__binary, - [49113] = 7, + [83054] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(783), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1622), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49137] = 8, + ACTIONS(3196), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83072] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, - sym__name, - ACTIONS(1986), 1, - anon_sym_RBRACE, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1129), 1, - sym_unqualified_import, + ACTIONS(3200), 1, + sym__decimal, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49163] = 7, + ACTIONS(3198), 3, + sym__hex, + sym__octal, + sym__binary, + [83088] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(1055), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(3202), 1, + anon_sym_DASH, + STATE(1381), 1, + aux_sym_constant_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49187] = 6, + ACTIONS(2046), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [83106] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(309), 1, - sym__decimal, - ACTIONS(1058), 1, - anon_sym_DASH, - STATE(371), 1, - sym_integer, + ACTIONS(942), 1, + anon_sym_RBRACK, + ACTIONS(944), 1, + anon_sym_DOT_DOT, + ACTIONS(3204), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(307), 3, - sym__hex, - sym__octal, - sym__binary, - [49209] = 6, + [83126] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(479), 1, - sym__decimal, - ACTIONS(1956), 1, + ACTIONS(3208), 1, anon_sym_DASH, - STATE(1219), 1, - sym_integer, + STATE(1398), 1, + aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(477), 3, - sym__hex, - sym__octal, - sym__binary, - [49231] = 5, + ACTIONS(3206), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [83144] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1988), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + ACTIONS(936), 1, + anon_sym_DOT_DOT, + ACTIONS(3211), 1, anon_sym_COMMA, - STATE(822), 1, + STATE(1339), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1502), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [49251] = 7, + [83164] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(490), 1, - sym_type_name, - STATE(1255), 1, - sym_identifier, + ACTIONS(3213), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(396), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49275] = 8, + ACTIONS(3216), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [83182] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, - sym__name, - ACTIONS(1991), 1, - anon_sym_RBRACE, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1041), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49301] = 7, + ACTIONS(3218), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LT_DASH, + [83196] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(1067), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1604), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49325] = 5, + ACTIONS(3154), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83214] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1993), 1, - anon_sym_DOT, - ACTIONS(1995), 1, - anon_sym_as, + ACTIONS(3222), 1, + anon_sym_PIPE, + STATE(1403), 1, + aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1964), 4, + ACTIONS(3220), 2, anon_sym_if, - anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_PIPE, - [49345] = 8, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, - sym__name, - ACTIONS(1997), 1, - anon_sym_RBRACE, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1129), 1, - sym_unqualified_import, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - [49371] = 7, + [83232] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1958), 1, - sym__name, - STATE(1092), 1, - sym_type_name, - STATE(1185), 1, - sym_identifier, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1628), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(730), 2, - sym_type_identifier, - sym_remote_type_identifier, - [49395] = 8, + ACTIONS(3196), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83250] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, - sym__name, - ACTIONS(1999), 1, - anon_sym_RBRACE, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1129), 1, - sym_unqualified_import, + ACTIONS(3156), 1, + anon_sym_COLON, + STATE(1627), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49421] = 6, + ACTIONS(3190), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [83268] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(830), 1, + ACTIONS(3227), 1, sym__decimal, - ACTIONS(2001), 1, - anon_sym_DASH, - STATE(301), 1, - sym_integer, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(828), 3, + ACTIONS(3225), 3, sym__hex, sym__octal, sym__binary, - [49443] = 7, + [83284] = 6, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1123), 1, + ACTIONS(3136), 1, + sym__name, + ACTIONS(3229), 1, anon_sym_RPAREN, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(2003), 1, - anon_sym_COMMA, - STATE(874), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1290), 1, - sym_pattern_spread, + STATE(1668), 1, + sym_record_update_argument, + STATE(1867), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49466] = 6, + [83304] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2005), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, + ACTIONS(3231), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RPAREN, + STATE(1408), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(832), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49487] = 4, + [83321] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1995), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(1964), 4, - anon_sym_if, + ACTIONS(3236), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49504] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1896), 1, - sym__discard_name, - ACTIONS(2010), 1, - anon_sym_RBRACK, + ACTIONS(3238), 1, + anon_sym_RPAREN, + STATE(1436), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(1261), 2, - sym_identifier, - sym_discard, - [49525] = 5, + [83338] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2014), 1, - anon_sym_LPAREN, - STATE(941), 1, - sym_constant_type_arguments, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2012), 3, - anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_COLON, + ACTIONS(3242), 1, anon_sym_EQ, - anon_sym_RPAREN, - [49544] = 6, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1287), 1, - sym_data_constructors, + STATE(1866), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49565] = 6, + [83355] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - ACTIONS(2016), 1, - anon_sym_RBRACE, - STATE(897), 1, - sym_constructor_name, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_GT_GT, + STATE(1426), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(832), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49586] = 7, + [83372] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2018), 1, - anon_sym_const, - ACTIONS(2020), 1, - anon_sym_external, - ACTIONS(2022), 1, - anon_sym_type, - ACTIONS(2024), 1, - anon_sym_fn, - ACTIONS(2026), 1, - sym_opacity_modifier, + ACTIONS(411), 1, + anon_sym_LBRACE, + ACTIONS(3248), 1, + anon_sym_DASH_GT, + STATE(221), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49609] = 7, + [83389] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1500), 1, - anon_sym_DOT_DOT, - ACTIONS(2028), 1, + ACTIONS(3250), 1, + anon_sym_RBRACE, + ACTIONS(3252), 1, anon_sym_COMMA, - ACTIONS(2030), 1, - anon_sym_RBRACK, - STATE(841), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1270), 1, - sym_list_pattern_tail, + STATE(1413), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49632] = 6, + [83406] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1271), 1, - sym_data_constructors, + ACTIONS(3156), 1, + anon_sym_COLON, + ACTIONS(3255), 1, + anon_sym_EQ, + STATE(1839), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49653] = 7, + [83423] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1500), 1, - anon_sym_DOT_DOT, - ACTIONS(2032), 1, + ACTIONS(2403), 1, + anon_sym_RPAREN, + ACTIONS(3257), 1, anon_sym_COMMA, - ACTIONS(2034), 1, - anon_sym_RBRACK, - STATE(851), 1, - aux_sym_case_clause_pattern_repeat1, - STATE(1279), 1, - sym_list_pattern_tail, + STATE(1501), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49676] = 6, + [83440] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1285), 1, - sym_data_constructors, + ACTIONS(3259), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, + anon_sym_GT_GT, + STATE(1416), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49697] = 5, + [83457] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(353), 1, - sym__discard_name, - ACTIONS(355), 1, - sym__name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(329), 3, + ACTIONS(3216), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [49716] = 7, + anon_sym_RBRACK, + [83470] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1129), 1, - anon_sym_DOT_DOT, - ACTIONS(2036), 1, - anon_sym_COMMA, - ACTIONS(2038), 1, + ACTIONS(1010), 1, anon_sym_RPAREN, - STATE(831), 1, - aux_sym_record_pattern_arguments_repeat1, - STATE(1247), 1, - sym_pattern_spread, + ACTIONS(3264), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49739] = 5, + [83487] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2042), 1, + ACTIONS(2515), 1, + anon_sym_RPAREN, + ACTIONS(3266), 1, anon_sym_COMMA, - STATE(845), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2040), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49758] = 7, + [83504] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - ACTIONS(1980), 1, - sym__name, - STATE(932), 1, - sym_identifier, - STATE(934), 1, - sym_type_identifier, - STATE(1129), 1, - sym_unqualified_import, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49781] = 6, + ACTIONS(3268), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [83517] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1217), 1, - sym_data_constructors, + ACTIONS(3270), 1, + anon_sym_RPAREN, + ACTIONS(3272), 1, + sym__name, + STATE(1445), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49802] = 6, + [83534] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1233), 1, - sym_data_constructors, + ACTIONS(3274), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_RPAREN, + STATE(1507), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49823] = 6, + [83551] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(897), 1, - sym_constructor_name, - STATE(1266), 1, - sym_data_constructors, + ACTIONS(3278), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, + anon_sym_RPAREN, + STATE(1423), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - STATE(837), 2, - sym_data_constructor, - aux_sym_data_constructors_repeat1, - [49844] = 5, + [83568] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2047), 1, + ACTIONS(3283), 1, anon_sym_COMMA, - STATE(852), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(3285), 1, + anon_sym_RPAREN, + STATE(1585), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2045), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49863] = 5, + [83585] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2049), 1, - anon_sym_COMMA, - STATE(851), 1, - aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2040), 3, + ACTIONS(3287), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_DOT_DOT, - [49882] = 5, + [83598] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2054), 1, + ACTIONS(1418), 1, + anon_sym_GT_GT, + ACTIONS(3289), 1, anon_sym_COMMA, - STATE(845), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2052), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [49901] = 7, + [83615] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2056), 1, - anon_sym_const, - ACTIONS(2058), 1, - anon_sym_external, - ACTIONS(2060), 1, - anon_sym_type, - ACTIONS(2062), 1, - anon_sym_fn, - ACTIONS(2064), 1, - sym_opacity_modifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49924] = 5, + ACTIONS(3116), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [83628] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2066), 1, - anon_sym_DASH, - STATE(860), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(2727), 1, + anon_sym_RPAREN, + ACTIONS(3291), 1, + anon_sym_COMMA, + STATE(1491), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1056), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [49942] = 5, + [83645] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2068), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, + ACTIONS(2279), 1, + anon_sym_LBRACE, + ACTIONS(3293), 1, + anon_sym_COMMA, + STATE(1429), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2070), 2, - sym_quoted_content, - sym_escape_sequence, - [49960] = 6, + [83662] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(687), 1, - anon_sym_RBRACK, - ACTIONS(689), 1, - anon_sym_DOT_DOT, - ACTIONS(2072), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(3296), 1, + anon_sym_LPAREN, + ACTIONS(3298), 1, + anon_sym_DASH_GT, + STATE(1875), 1, + sym_constant_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [49980] = 5, + [83679] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2074), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, + ACTIONS(2769), 1, + anon_sym_RPAREN, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(1423), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2070), 2, - sym_quoted_content, - sym_escape_sequence, - [49998] = 5, + [83696] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2076), 1, - anon_sym_DQUOTE2, - STATE(857), 1, - aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2078), 2, - sym_quoted_content, - sym_escape_sequence, - [50016] = 4, + ACTIONS(3220), 3, + anon_sym_if, + anon_sym_DASH_GT, + anon_sym_PIPE, + [83709] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2082), 1, - sym__decimal, + ACTIONS(3240), 1, + anon_sym_COLON, + ACTIONS(3302), 1, + anon_sym_EQ, + STATE(1814), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2080), 3, - sym__hex, - sym__octal, - sym__binary, - [50032] = 5, + [83726] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2086), 1, - anon_sym_DASH, - STATE(860), 1, - aux_sym_expression_bit_string_segment_options_repeat1, + ACTIONS(3306), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2084), 2, + ACTIONS(3304), 2, anon_sym_COMMA, anon_sym_GT_GT, - [50050] = 5, + [83741] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(329), 1, - anon_sym_DOT, - ACTIONS(353), 1, + ACTIONS(3240), 1, anon_sym_COLON, + ACTIONS(3308), 1, + anon_sym_EQ, + STATE(1786), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1212), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50068] = 5, + [83758] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2091), 1, - anon_sym_DASH, - STATE(862), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(2753), 1, + anon_sym_RPAREN, + ACTIONS(3310), 1, + anon_sym_COMMA, + STATE(1423), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2089), 2, + [83775] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3312), 1, anon_sym_COMMA, + ACTIONS(3314), 1, anon_sym_GT_GT, - [50086] = 5, + STATE(1542), 1, + aux_sym__expression_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [83792] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2094), 1, - anon_sym_DQUOTE2, - STATE(855), 1, - aux_sym_string_repeat1, + ACTIONS(3316), 1, + anon_sym_COMMA, + ACTIONS(3318), 1, + anon_sym_RPAREN, + STATE(1457), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2096), 2, - sym_quoted_content, - sym_escape_sequence, - [50104] = 4, + [83809] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2100), 1, - sym__decimal, + ACTIONS(2737), 1, + anon_sym_RPAREN, + ACTIONS(3320), 1, + anon_sym_COMMA, + STATE(1571), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2098), 3, - sym__hex, - sym__octal, - sym__binary, - [50120] = 5, + [83826] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1113), 1, - sym__type_annotation, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(3322), 1, + anon_sym_DASH_GT, + STATE(96), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2102), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50138] = 6, + [83843] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(703), 1, - anon_sym_RBRACK, - ACTIONS(705), 1, - anon_sym_DOT_DOT, - ACTIONS(2106), 1, + ACTIONS(3324), 1, anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(3326), 1, + anon_sym_RPAREN, + STATE(1462), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50158] = 6, + [83860] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(725), 1, - anon_sym_RBRACK, - ACTIONS(727), 1, - anon_sym_DOT_DOT, - ACTIONS(2108), 1, + ACTIONS(3328), 1, anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(3331), 1, + anon_sym_RPAREN, + STATE(1442), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50178] = 5, + [83877] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2110), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2070), 2, - sym_quoted_content, - sym_escape_sequence, - [50196] = 5, + ACTIONS(3206), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [83890] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2112), 1, - anon_sym_DASH, - STATE(898), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3335), 1, + anon_sym_DASH_GT, + STATE(1777), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1083), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50214] = 4, + [83907] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2116), 1, - sym__decimal, + ACTIONS(3337), 1, + anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2114), 3, - sym__hex, - sym__octal, - sym__binary, - [50230] = 6, + [83924] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - STATE(992), 1, - sym_record_update_argument, - STATE(1215), 1, - sym_label, - STATE(1221), 1, - sym_record_update_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50250] = 6, + ACTIONS(3341), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [83937] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - ACTIONS(2120), 1, + ACTIONS(1046), 1, anon_sym_RPAREN, - STATE(1061), 1, - sym_record_update_argument, - STATE(1215), 1, - sym_label, + ACTIONS(3343), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50270] = 5, + [83954] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2124), 1, - anon_sym_PIPE, - STATE(873), 1, - aux_sym_case_clause_patterns_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2122), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50288] = 5, + ACTIONS(3345), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [83967] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2127), 1, + ACTIONS(3347), 1, anon_sym_COMMA, - STATE(874), 1, - aux_sym_record_pattern_arguments_repeat1, + ACTIONS(3349), 1, + anon_sym_RPAREN, + STATE(1599), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2130), 2, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [50306] = 6, + [83984] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, + ACTIONS(3136), 1, sym__name, - ACTIONS(2132), 1, - anon_sym_RPAREN, - STATE(1061), 1, + STATE(1668), 1, sym_record_update_argument, - STATE(1215), 1, + STATE(1867), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50326] = 6, + [84001] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(721), 1, - anon_sym_RBRACK, - ACTIONS(723), 1, - anon_sym_DOT_DOT, - ACTIONS(2134), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50346] = 5, + ACTIONS(3351), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [84014] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1050), 1, - sym__type_annotation, + ACTIONS(3353), 1, + anon_sym_COMMA, + ACTIONS(3355), 1, + anon_sym_RPAREN, + STATE(1474), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2136), 2, + [84031] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3357), 1, anon_sym_COMMA, + ACTIONS(3359), 1, anon_sym_RPAREN, - [50364] = 5, + STATE(1569), 1, + aux_sym_constant_type_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84048] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1102), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2136), 2, + ACTIONS(3361), 3, anon_sym_COMMA, anon_sym_RPAREN, - [50382] = 5, + anon_sym_EQ, + [84061] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2138), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2070), 2, - sym_quoted_content, - sym_escape_sequence, - [50400] = 4, + ACTIONS(3363), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [84074] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2142), 1, - sym__decimal, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, + anon_sym_DASH_GT, + STATE(1891), 1, + sym_function_parameter_types, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2140), 3, - sym__hex, - sym__octal, - sym__binary, - [50416] = 5, + [84091] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2144), 1, - anon_sym_DQUOTE2, - STATE(884), 1, - aux_sym_string_repeat1, + ACTIONS(872), 1, + anon_sym_RPAREN, + ACTIONS(3367), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2146), 2, - sym_quoted_content, - sym_escape_sequence, - [50434] = 5, + [84108] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2148), 1, - anon_sym_DQUOTE2, - STATE(879), 1, - aux_sym_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2150), 2, - sym_quoted_content, - sym_escape_sequence, - [50452] = 4, + ACTIONS(3369), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [84121] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2154), 1, - sym__decimal, + ACTIONS(3371), 1, + anon_sym_COMMA, + ACTIONS(3373), 1, + anon_sym_RBRACK, + STATE(1479), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2152), 3, - sym__hex, - sym__octal, - sym__binary, - [50468] = 5, + [84138] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2156), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3377), 1, + anon_sym_GT_GT, + STATE(1481), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2070), 2, - sym_quoted_content, - sym_escape_sequence, - [50486] = 5, + [84155] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1119), 1, - sym__type_annotation, + ACTIONS(3379), 1, + anon_sym_COMMA, + ACTIONS(3381), 1, + anon_sym_RPAREN, + STATE(1530), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2158), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50504] = 5, + [84172] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1172), 1, - sym__type_annotation, + ACTIONS(2387), 1, + anon_sym_RPAREN, + ACTIONS(3383), 1, + anon_sym_COMMA, + STATE(1503), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2102), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50522] = 5, + [84189] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2160), 1, + ACTIONS(3385), 1, anon_sym_COMMA, - STATE(887), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3387), 1, + anon_sym_RPAREN, + STATE(1518), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2163), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50540] = 5, + [84206] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - STATE(1148), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2158), 2, + ACTIONS(3389), 3, anon_sym_COMMA, anon_sym_RPAREN, - [50558] = 6, + anon_sym_EQ, + [84219] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(481), 1, - sym__name, - ACTIONS(1896), 1, - sym__discard_name, - STATE(914), 1, - sym_discard, - STATE(924), 1, - sym_identifier, + ACTIONS(3391), 1, + anon_sym_RBRACE, + ACTIONS(3393), 1, + anon_sym_COMMA, + STATE(1485), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50578] = 5, + [84236] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2165), 1, - anon_sym_DQUOTE2, - STATE(890), 1, - aux_sym_string_repeat1, + ACTIONS(3395), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, + anon_sym_RPAREN, + STATE(1466), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2167), 2, - sym_quoted_content, - sym_escape_sequence, - [50596] = 5, + [84253] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2172), 1, - anon_sym_DASH, - STATE(900), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(3272), 1, + sym__name, + ACTIONS(3400), 1, + anon_sym_RPAREN, + STATE(1722), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2170), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50614] = 6, + [84270] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - STATE(992), 1, - sym_record_update_argument, - STATE(1215), 1, - sym_label, - STATE(1262), 1, - sym_record_update_arguments, + ACTIONS(3402), 1, + anon_sym_COMMA, + ACTIONS(3404), 1, + anon_sym_RPAREN, + STATE(1506), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50634] = 5, + [84287] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2176), 1, - anon_sym_PIPE, - STATE(894), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(3272), 1, + sym__name, + ACTIONS(3406), 1, + anon_sym_RPAREN, + STATE(1722), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2174), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50652] = 5, + [84304] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2178), 1, - anon_sym_PIPE, - STATE(873), 1, - aux_sym_case_clause_patterns_repeat1, + ACTIONS(3406), 1, + anon_sym_RPAREN, + ACTIONS(3408), 1, + anon_sym_COMMA, + STATE(1466), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1518), 2, - anon_sym_if, - anon_sym_DASH_GT, - [50670] = 6, + [84321] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - STATE(992), 1, - sym_record_update_argument, - STATE(1197), 1, - sym_record_update_arguments, - STATE(1215), 1, - sym_label, + STATE(1850), 1, + sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50690] = 5, + ACTIONS(3410), 2, + anon_sym_erlang, + anon_sym_javascript, + [84336] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2182), 1, - anon_sym_DASH, - STATE(854), 1, - aux_sym_expression_bit_string_segment_options_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2180), 2, + ACTIONS(3412), 3, anon_sym_COMMA, - anon_sym_GT_GT, - [50708] = 5, + anon_sym_RPAREN, + anon_sym_EQ, + [84349] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2186), 1, - anon_sym_LPAREN, - STATE(1151), 1, - sym_data_constructor_arguments, + ACTIONS(3414), 1, + anon_sym_COMMA, + ACTIONS(3417), 1, + anon_sym_GT_GT, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2184), 2, - anon_sym_RBRACE, - sym__upname, - [50726] = 5, + [84366] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2190), 1, - anon_sym_DASH, - STATE(898), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2878), 1, + anon_sym_RPAREN, + ACTIONS(3419), 1, + anon_sym_COMMA, + STATE(1442), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2188), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50744] = 5, + [84383] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2193), 1, - anon_sym_DQUOTE2, - STATE(868), 1, - aux_sym_string_repeat1, + ACTIONS(3421), 1, + anon_sym_COMMA, + ACTIONS(3423), 1, + anon_sym_RPAREN, + STATE(1431), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2195), 2, - sym_quoted_content, - sym_escape_sequence, - [50762] = 5, + [84400] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2197), 1, - anon_sym_DASH, - STATE(862), 1, - aux_sym_constant_bit_string_segment_options_repeat1, + ACTIONS(3425), 1, + anon_sym_COMMA, + ACTIONS(3427), 1, + anon_sym_RPAREN, + STATE(1428), 1, + aux_sym_data_constructor_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1074), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50780] = 6, + [84417] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - STATE(992), 1, - sym_record_update_argument, - STATE(1188), 1, - sym_record_update_arguments, - STATE(1215), 1, - sym_label, + ACTIONS(3429), 1, + anon_sym_COMMA, + ACTIONS(3431), 1, + anon_sym_RPAREN, + STATE(1495), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50800] = 6, + [84434] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(1176), 1, - sym_anonymous_function_parameters, - STATE(1177), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50820] = 5, + ACTIONS(3433), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [84447] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2203), 1, - anon_sym_DASH, - STATE(869), 1, - aux_sym_pattern_bit_string_segment_options_repeat1, + ACTIONS(2477), 1, + anon_sym_RBRACK, + ACTIONS(3435), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2201), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [50838] = 4, + [84464] = 3, ACTIONS(3), 1, sym_module_comment, - STATE(1224), 1, - sym_target, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2205), 2, - anon_sym_erlang, - anon_sym_javascript, - [50853] = 5, + ACTIONS(3437), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [84477] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(908), 1, + ACTIONS(2431), 1, anon_sym_GT_GT, - ACTIONS(2207), 1, + ACTIONS(3439), 1, anon_sym_COMMA, - STATE(923), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1416), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50870] = 5, + [84494] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1532), 1, - anon_sym_GT_GT, - ACTIONS(2209), 1, + ACTIONS(2936), 1, + anon_sym_RBRACE, + ACTIONS(3441), 1, anon_sym_COMMA, - STATE(911), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1413), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50887] = 3, + [84511] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3443), 1, + anon_sym_COMMA, + ACTIONS(3445), 1, + anon_sym_RPAREN, + STATE(1499), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2211), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [50900] = 3, + [84528] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3449), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2213), 3, + ACTIONS(3447), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - [50913] = 3, + [84543] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2950), 1, + anon_sym_RBRACE, + ACTIONS(3451), 1, + anon_sym_COMMA, + STATE(1413), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2215), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [50926] = 3, + [84560] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3453), 1, + anon_sym_COMMA, + ACTIONS(3455), 1, + anon_sym_RPAREN, + STATE(1502), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2188), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [50939] = 5, + [84577] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2217), 1, + ACTIONS(3457), 1, anon_sym_COMMA, - ACTIONS(2220), 1, - anon_sym_GT_GT, - STATE(911), 1, - aux_sym__pattern_bit_string_repeat1, + ACTIONS(3459), 1, + anon_sym_RPAREN, + STATE(1504), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50956] = 5, + [84594] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2222), 1, - anon_sym_RPAREN, - ACTIONS(2224), 1, + ACTIONS(3272), 1, sym__name, - STATE(1086), 1, + ACTIONS(3461), 1, + anon_sym_RPAREN, + STATE(1722), 1, sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50973] = 5, + [84611] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2226), 1, - anon_sym_COMMA, - ACTIONS(2228), 1, + ACTIONS(858), 1, anon_sym_RPAREN, - STATE(962), 1, - aux_sym_case_clause_pattern_repeat1, + ACTIONS(3463), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [50990] = 3, + [84628] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2926), 1, + anon_sym_RPAREN, + ACTIONS(3465), 1, + anon_sym_COMMA, + STATE(1590), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2230), 3, + [84645] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3467), 1, anon_sym_COMMA, + ACTIONS(3470), 1, anon_sym_RPAREN, - anon_sym_COLON, - [51003] = 3, + STATE(1491), 1, + aux_sym_data_constructor_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84662] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3474), 1, + anon_sym_LT_DASH, + STATE(1597), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2232), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [51016] = 5, + [84679] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2234), 1, - anon_sym_COMMA, - ACTIONS(2237), 1, - anon_sym_RPAREN, - STATE(916), 1, - aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51033] = 5, + ACTIONS(3476), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [84692] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1779), 1, + ACTIONS(1004), 1, anon_sym_RPAREN, - ACTIONS(2239), 1, + ACTIONS(3478), 1, anon_sym_COMMA, - STATE(1021), 1, - aux_sym_type_arguments_repeat1, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51050] = 5, + [84709] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1797), 1, + ACTIONS(2443), 1, anon_sym_RPAREN, - ACTIONS(2241), 1, + ACTIONS(3480), 1, anon_sym_COMMA, - STATE(1012), 1, - aux_sym_tuple_type_repeat1, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51067] = 5, + [84726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2243), 1, - anon_sym_if, - ACTIONS(2245), 1, - anon_sym_DASH_GT, - STATE(1220), 1, - sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51084] = 5, + ACTIONS(3482), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [84739] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2222), 1, - anon_sym_RPAREN, - ACTIONS(2247), 1, + ACTIONS(3484), 1, anon_sym_COMMA, - STATE(1014), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3486), 1, + anon_sym_RPAREN, + STATE(1415), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51101] = 5, + [84756] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2249), 1, - anon_sym_EQ, - ACTIONS(2251), 1, - anon_sym_COLON, - STATE(1253), 1, - sym__constant_type_annotation, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3490), 1, + anon_sym_RPAREN, + STATE(1489), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51118] = 5, + [84773] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1791), 1, + ACTIONS(2377), 1, anon_sym_RPAREN, - ACTIONS(2253), 1, + ACTIONS(3492), 1, anon_sym_COMMA, - STATE(1012), 1, - aux_sym_tuple_type_repeat1, + STATE(1501), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51135] = 5, + [84790] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2255), 1, - anon_sym_COMMA, - ACTIONS(2258), 1, + ACTIONS(1282), 1, anon_sym_GT_GT, - STATE(923), 1, + ACTIONS(3494), 1, + anon_sym_COMMA, + STATE(1473), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51152] = 3, + [84807] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3496), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_RPAREN, + STATE(1501), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2260), 3, - anon_sym_COMMA, + [84824] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2781), 1, anon_sym_RPAREN, - anon_sym_COLON, - [51165] = 5, + ACTIONS(3501), 1, + anon_sym_COMMA, + STATE(1423), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84841] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2262), 1, + ACTIONS(3503), 1, anon_sym_COMMA, - ACTIONS(2265), 1, + ACTIONS(3506), 1, anon_sym_RPAREN, - STATE(925), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1503), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51182] = 5, + [84858] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(387), 1, + ACTIONS(2733), 1, anon_sym_RPAREN, - ACTIONS(2267), 1, + ACTIONS(3508), 1, anon_sym_COMMA, - STATE(942), 1, - aux_sym_arguments_repeat1, + STATE(1408), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51199] = 4, + [84875] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2271), 1, - anon_sym_COLON, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1252), 1, + sym_external_function_body, + STATE(1716), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2269), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51214] = 5, + [84892] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1759), 1, + ACTIONS(2729), 1, anon_sym_RPAREN, - ACTIONS(2273), 1, + ACTIONS(3510), 1, anon_sym_COMMA, - STATE(997), 1, - aux_sym_data_constructor_arguments_repeat1, + STATE(1408), 1, + aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51231] = 3, + [84909] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3229), 1, + anon_sym_RPAREN, + ACTIONS(3512), 1, + anon_sym_COMMA, + STATE(1541), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2275), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51244] = 5, + [84926] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(203), 1, + anon_sym_LBRACE, + ACTIONS(3514), 1, + anon_sym_DASH_GT, + STATE(943), 1, + sym_block, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [84943] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2277), 1, + ACTIONS(3516), 1, anon_sym_COMMA, - ACTIONS(2279), 1, + ACTIONS(3518), 1, anon_sym_GT_GT, - STATE(905), 1, + STATE(1500), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51261] = 5, + [84960] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2281), 1, - anon_sym_RBRACE, - ACTIONS(2283), 1, + ACTIONS(2415), 1, + anon_sym_GT_GT, + ACTIONS(3520), 1, anon_sym_COMMA, - STATE(956), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1416), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51278] = 4, + [84977] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2287), 1, - anon_sym_as, + ACTIONS(3522), 1, + anon_sym_if, + ACTIONS(3524), 1, + anon_sym_DASH_GT, + STATE(1872), 1, + sym_case_clause_guard, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2285), 2, - anon_sym_RBRACE, + [84994] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2551), 1, + anon_sym_RBRACK, + ACTIONS(3526), 1, anon_sym_COMMA, - [51293] = 5, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85011] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - STATE(485), 1, + STATE(1246), 1, sym_external_function_body, - STATE(1133), 1, + STATE(1716), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51310] = 4, + [85028] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2289), 1, - anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2285), 2, - anon_sym_RBRACE, + ACTIONS(3528), 3, anon_sym_COMMA, - [51325] = 5, + anon_sym_RPAREN, + anon_sym_EQ, + [85041] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(779), 1, - anon_sym_RPAREN, - ACTIONS(2291), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(3532), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51342] = 5, + ACTIONS(3530), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [85056] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2293), 1, + ACTIONS(3534), 1, anon_sym_COMMA, - ACTIONS(2296), 1, + ACTIONS(3537), 1, anon_sym_RPAREN, - STATE(936), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1516), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51359] = 3, + [85073] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(5), 2, - sym_statement_comment, - sym_comment, - ACTIONS(2298), 3, + ACTIONS(3539), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(3541), 1, anon_sym_RPAREN, - [51372] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2300), 1, - anon_sym_COMMA, - ACTIONS(2302), 1, - anon_sym_RBRACK, - STATE(963), 1, + STATE(1419), 1, aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51389] = 4, + [85090] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2306), 1, - anon_sym_COLON, + ACTIONS(2803), 1, + anon_sym_RPAREN, + ACTIONS(3543), 1, + anon_sym_COMMA, + STATE(1516), 1, + aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2304), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [51404] = 5, + [85107] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2308), 1, + ACTIONS(3545), 1, anon_sym_COMMA, - ACTIONS(2310), 1, - anon_sym_GT_GT, - STATE(966), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(3548), 1, + anon_sym_RPAREN, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51421] = 3, + [85124] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2312), 3, + ACTIONS(3158), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51434] = 5, + anon_sym_GT_GT, + anon_sym_DASH, + [85137] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2314), 1, + ACTIONS(3550), 1, anon_sym_COMMA, - ACTIONS(2317), 1, + ACTIONS(3552), 1, anon_sym_RPAREN, - STATE(942), 1, - aux_sym_arguments_repeat1, + STATE(1556), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51451] = 5, + [85154] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(385), 1, + ACTIONS(880), 1, anon_sym_RPAREN, - ACTIONS(2319), 1, + ACTIONS(3554), 1, anon_sym_COMMA, - STATE(942), 1, + STATE(1519), 1, aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51468] = 5, + [85171] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2321), 1, - anon_sym_COMMA, - ACTIONS(2323), 1, + ACTIONS(1172), 1, anon_sym_RPAREN, - STATE(996), 1, - aux_sym_external_function_parameters_repeat1, + ACTIONS(3556), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51485] = 3, + [85188] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3558), 1, + anon_sym_COMMA, + ACTIONS(3560), 1, + anon_sym_RPAREN, + STATE(1522), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2325), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51498] = 3, + [85205] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1204), 1, + anon_sym_GT_GT, + ACTIONS(3562), 1, + anon_sym_COMMA, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2327), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [51511] = 5, + [85222] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1877), 1, + ACTIONS(3272), 1, + sym__name, + ACTIONS(3564), 1, anon_sym_RPAREN, - ACTIONS(2329), 1, - anon_sym_COMMA, - STATE(972), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1449), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51528] = 5, + [85239] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(765), 1, - anon_sym_RPAREN, - ACTIONS(2331), 1, + ACTIONS(3156), 1, + anon_sym_COLON, + ACTIONS(3566), 1, + anon_sym_EQ, + STATE(1887), 1, + sym__type_annotation, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85256] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2243), 1, + anon_sym_GT_GT, + ACTIONS(3568), 1, anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + STATE(1540), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51545] = 3, + [85273] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2333), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51558] = 5, + ACTIONS(3570), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [85286] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1879), 1, + ACTIONS(2797), 1, anon_sym_RPAREN, - ACTIONS(2335), 1, + ACTIONS(3572), 1, anon_sym_COMMA, - STATE(916), 1, + STATE(1516), 1, aux_sym_constant_tuple_type_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51575] = 3, + [85303] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_DASH_GT, + STATE(580), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2337), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [51588] = 5, + [85320] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2339), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(2341), 1, - anon_sym_RPAREN, - STATE(943), 1, - aux_sym_arguments_repeat1, + ACTIONS(3578), 1, + anon_sym_GT_GT, + STATE(1525), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51605] = 5, + [85337] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1556), 1, - anon_sym_RPAREN, - ACTIONS(2343), 1, + ACTIONS(3580), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_constant_record_arguments_repeat1, + ACTIONS(3582), 1, + anon_sym_RPAREN, + STATE(1581), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51622] = 5, + [85354] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2345), 1, - anon_sym_COMMA, - ACTIONS(2348), 1, - anon_sym_GT_GT, - STATE(954), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51639] = 5, + ACTIONS(3584), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [85367] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(878), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3171), 3, + anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(2350), 1, + anon_sym_DASH, + [85380] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3586), 1, anon_sym_COMMA, - STATE(923), 1, + ACTIONS(3588), 1, + anon_sym_GT_GT, + STATE(1548), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51656] = 5, + [85397] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1986), 1, - anon_sym_RBRACE, - ACTIONS(2352), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(71), 1, + anon_sym_LBRACE, + ACTIONS(3590), 1, + anon_sym_DASH_GT, + STATE(701), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51673] = 5, + [85414] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2354), 1, - anon_sym_COMMA, - ACTIONS(2356), 1, - anon_sym_RPAREN, - STATE(1017), 1, - aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51690] = 5, + ACTIONS(3592), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DOT_DOT, + [85427] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, + ACTIONS(3156), 1, anon_sym_COLON, - ACTIONS(2358), 1, + ACTIONS(3594), 1, anon_sym_EQ, - STATE(1186), 1, + STATE(1848), 1, sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51707] = 5, + [85444] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2360), 1, + ACTIONS(3596), 1, anon_sym_COMMA, - ACTIONS(2362), 1, - anon_sym_RPAREN, - STATE(926), 1, - aux_sym_arguments_repeat1, + ACTIONS(3599), 1, + anon_sym_GT_GT, + STATE(1540), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51724] = 5, + [85461] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2364), 1, - anon_sym_LPAREN, - ACTIONS(2366), 1, - anon_sym_DASH_GT, - STATE(1193), 1, - sym_function_parameter_types, + ACTIONS(3601), 1, + anon_sym_COMMA, + ACTIONS(3604), 1, + anon_sym_RPAREN, + STATE(1541), 1, + aux_sym_record_update_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51741] = 5, + [85478] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2368), 1, - anon_sym_COMMA, - ACTIONS(2370), 1, + ACTIONS(1222), 1, anon_sym_GT_GT, - STATE(955), 1, + ACTIONS(3606), 1, + anon_sym_COMMA, + STATE(1473), 1, aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51758] = 5, + [85495] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2372), 1, + ACTIONS(3608), 1, anon_sym_COMMA, - ACTIONS(2374), 1, + ACTIONS(3610), 1, anon_sym_RPAREN, - STATE(851), 1, - aux_sym_case_clause_pattern_repeat1, + STATE(1490), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51775] = 5, + [85512] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1644), 1, - anon_sym_RBRACK, - ACTIONS(2376), 1, + ACTIONS(3612), 1, anon_sym_COMMA, - STATE(887), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3615), 1, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51792] = 5, + [85529] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2132), 1, + ACTIONS(870), 1, anon_sym_RPAREN, - ACTIONS(2378), 1, + ACTIONS(3617), 1, anon_sym_COMMA, - STATE(1047), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1519), 1, + aux_sym_arguments_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85546] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3619), 1, + anon_sym_COMMA, + ACTIONS(3622), 1, + anon_sym_LT_DASH, + STATE(1546), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51809] = 3, + [85563] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2380), 3, + ACTIONS(3624), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [51822] = 5, + anon_sym_COLON, + [85576] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1610), 1, + ACTIONS(1468), 1, anon_sym_GT_GT, - ACTIONS(2382), 1, + ACTIONS(3626), 1, anon_sym_COMMA, - STATE(954), 1, - aux_sym__constant_bit_string_repeat1, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51839] = 5, + [85593] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2384), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3628), 3, anon_sym_COMMA, - ACTIONS(2386), 1, anon_sym_RPAREN, - STATE(953), 1, - aux_sym_constant_record_arguments_repeat1, + anon_sym_COLON, + [85606] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(754), 1, + sym_external_function_body, + STATE(1649), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [85623] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(984), 1, + anon_sym_RPAREN, + ACTIONS(3630), 1, + anon_sym_COMMA, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51856] = 3, + [85640] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2388), 3, + ACTIONS(3632), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [51869] = 5, + anon_sym_EQ, + [85653] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - ACTIONS(2390), 1, - anon_sym_EQ, - STATE(1201), 1, - sym__type_annotation, + ACTIONS(3634), 1, + anon_sym_COMMA, + ACTIONS(3636), 1, + anon_sym_RPAREN, + STATE(1545), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51886] = 5, + [85670] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2251), 1, - anon_sym_COLON, - ACTIONS(2392), 1, - anon_sym_EQ, - STATE(1226), 1, - sym__constant_type_annotation, + ACTIONS(3638), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_RPAREN, + STATE(1565), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51903] = 5, + [85687] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2394), 1, + ACTIONS(1320), 1, + anon_sym_GT_GT, + ACTIONS(3642), 1, anon_sym_COMMA, - ACTIONS(2396), 1, - anon_sym_RPAREN, - STATE(950), 1, - aux_sym_constant_tuple_type_repeat1, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51920] = 5, + [85704] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2398), 1, + ACTIONS(3644), 1, anon_sym_COMMA, - ACTIONS(2401), 1, + ACTIONS(3646), 1, anon_sym_RPAREN, - STATE(972), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1349), 1, + aux_sym_case_clause_pattern_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51937] = 5, + [85721] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2403), 1, + ACTIONS(3648), 1, anon_sym_LBRACE, - ACTIONS(2405), 1, + ACTIONS(3650), 1, anon_sym_COMMA, - STATE(822), 1, + STATE(1429), 1, aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51954] = 5, + [85738] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(439), 1, + ACTIONS(1174), 1, anon_sym_RPAREN, - ACTIONS(2407), 1, + ACTIONS(3652), 1, anon_sym_COMMA, - STATE(942), 1, - aux_sym_arguments_repeat1, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [51971] = 3, + [85755] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(720), 1, + sym_external_function_body, + STATE(1649), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2163), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [51984] = 5, + [85772] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1622), 1, - anon_sym_RPAREN, - ACTIONS(2409), 1, + ACTIONS(3654), 1, anon_sym_COMMA, - STATE(887), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3656), 1, + anon_sym_RPAREN, + STATE(1566), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52001] = 3, + [85789] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2411), 3, + ACTIONS(3658), 3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DASH, - [52014] = 3, + [85802] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2413), 3, + ACTIONS(3660), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [52027] = 5, + anon_sym_EQ, + [85815] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(749), 1, - anon_sym_RPAREN, - ACTIONS(2415), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(3662), 1, + anon_sym_DASH_GT, + STATE(288), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52044] = 5, + [85832] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2417), 1, + ACTIONS(3664), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(3666), 1, anon_sym_GT_GT, - STATE(906), 1, - aux_sym__pattern_bit_string_repeat1, + STATE(1555), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52061] = 4, + [85849] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2423), 1, - anon_sym_COLON, + ACTIONS(862), 1, + anon_sym_RPAREN, + ACTIONS(3668), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2421), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [52076] = 5, + [85866] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2425), 1, - anon_sym_RBRACE, - ACTIONS(2427), 1, + ACTIONS(876), 1, + anon_sym_RPAREN, + ACTIONS(3670), 1, anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52093] = 5, + [85883] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, - sym__name, - STATE(1061), 1, - sym_record_update_argument, - STATE(1215), 1, - sym_label, + ACTIONS(3672), 1, + anon_sym_COMMA, + ACTIONS(3674), 1, + anon_sym_RBRACK, + STATE(1575), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52110] = 5, + [85900] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2430), 1, + ACTIONS(3676), 1, anon_sym_COMMA, - ACTIONS(2432), 1, - anon_sym_RPAREN, - STATE(974), 1, - aux_sym_arguments_repeat1, + ACTIONS(3678), 1, + anon_sym_GT_GT, + STATE(1577), 1, + aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52127] = 5, + [85917] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(884), 1, - anon_sym_GT_GT, - ACTIONS(2434), 1, + ACTIONS(2757), 1, + anon_sym_RPAREN, + ACTIONS(3680), 1, anon_sym_COMMA, - STATE(923), 1, - aux_sym__expression_bit_string_repeat1, + STATE(1544), 1, + aux_sym_constant_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52144] = 5, + [85934] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1970), 1, - anon_sym_RPAREN, - ACTIONS(2436), 1, + ACTIONS(3682), 1, anon_sym_COMMA, - STATE(1037), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(3684), 1, + anon_sym_RPAREN, + STATE(1439), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52161] = 5, + [85951] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2438), 1, + ACTIONS(3686), 1, anon_sym_COMMA, - ACTIONS(2440), 1, + ACTIONS(3689), 1, anon_sym_RPAREN, - STATE(947), 1, - aux_sym_constant_type_arguments_repeat1, + STATE(1571), 1, + aux_sym_external_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52178] = 5, + [85968] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - ACTIONS(2442), 1, - anon_sym_EQ, - STATE(1208), 1, - sym__type_annotation, + ACTIONS(3691), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, + anon_sym_RBRACK, + STATE(1512), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52195] = 5, + [85985] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2444), 1, + ACTIONS(3695), 1, anon_sym_COMMA, - ACTIONS(2446), 1, - anon_sym_GT_GT, - STATE(985), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3697), 1, + anon_sym_RPAREN, + STATE(1582), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52212] = 3, + [86002] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3701), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2448), 3, + ACTIONS(3699), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [52225] = 3, + anon_sym_GT_GT, + [86017] = 5, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2505), 1, + anon_sym_RBRACK, + ACTIONS(3703), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2084), 3, + [86034] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3705), 1, anon_sym_COMMA, + ACTIONS(3707), 1, anon_sym_GT_GT, - anon_sym_DASH, - [52238] = 5, + STATE(1510), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [86051] = 5, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2425), 1, + anon_sym_GT_GT, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(1416), 1, + aux_sym__constant_bit_string_repeat1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [86068] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2450), 1, + ACTIONS(3711), 1, anon_sym_COMMA, - ACTIONS(2452), 1, + ACTIONS(3713), 1, anon_sym_RPAREN, - STATE(964), 1, - aux_sym_record_update_arguments_repeat1, + STATE(1586), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52255] = 3, + [86085] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2454), 3, + ACTIONS(3715), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [52268] = 3, + [86098] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2456), 3, + ACTIONS(3717), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [52281] = 5, + anon_sym_COLON, + [86111] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(791), 1, - sym_external_function_body, - STATE(1101), 1, - sym_string, + ACTIONS(2341), 1, + anon_sym_RPAREN, + ACTIONS(3719), 1, + anon_sym_COMMA, + STATE(1503), 1, + aux_sym__attribute_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52298] = 5, + [86128] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1771), 1, + ACTIONS(2509), 1, anon_sym_RPAREN, - ACTIONS(2458), 1, + ACTIONS(3721), 1, anon_sym_COMMA, - STATE(936), 1, - aux_sym_external_function_parameters_repeat1, + STATE(1400), 1, + aux_sym_constant_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52315] = 5, + [86145] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2460), 1, + ACTIONS(3723), 1, anon_sym_COMMA, - ACTIONS(2463), 1, - anon_sym_RPAREN, - STATE(997), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(3725), 1, + anon_sym_GT_GT, + STATE(1528), 1, + aux_sym__pattern_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52332] = 5, + [86162] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2465), 1, - anon_sym_COMMA, - ACTIONS(2467), 1, + ACTIONS(856), 1, anon_sym_RPAREN, - STATE(928), 1, - aux_sym_data_constructor_arguments_repeat1, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52349] = 5, + [86179] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2469), 1, - anon_sym_COMMA, - ACTIONS(2471), 1, + ACTIONS(2890), 1, anon_sym_RPAREN, - STATE(922), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3729), 1, + anon_sym_COMMA, + STATE(1442), 1, + aux_sym_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52366] = 5, + [86196] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - sym__name, - ACTIONS(2473), 1, + ACTIONS(2315), 1, anon_sym_RPAREN, - STATE(1016), 1, - sym_type_parameter, + ACTIONS(3731), 1, + anon_sym_COMMA, + STATE(1501), 1, + aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52383] = 5, + [86213] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2251), 1, - anon_sym_COLON, - ACTIONS(2475), 1, - anon_sym_EQ, - STATE(1269), 1, - sym__constant_type_annotation, + ACTIONS(3733), 1, + anon_sym_RBRACE, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1482), 1, + aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52400] = 5, + [86230] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2477), 1, - anon_sym_COMMA, - ACTIONS(2479), 1, - anon_sym_RPAREN, - STATE(986), 1, - aux_sym_anonymous_function_parameters_repeat1, + ACTIONS(3739), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52417] = 5, + ACTIONS(3737), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [86245] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2481), 1, - anon_sym_COMMA, - ACTIONS(2483), 1, - anon_sym_RPAREN, - STATE(918), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3741), 1, + anon_sym_as, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52434] = 5, + ACTIONS(3737), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [86260] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2485), 1, + ACTIONS(3743), 1, anon_sym_COMMA, - ACTIONS(2487), 1, - anon_sym_GT_GT, - STATE(1023), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(3746), 1, + anon_sym_RPAREN, + STATE(1590), 1, + aux_sym_anonymous_function_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52451] = 5, + [86277] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1783), 1, + ACTIONS(1116), 1, anon_sym_RPAREN, - ACTIONS(2489), 1, + ACTIONS(3748), 1, anon_sym_COMMA, - STATE(1021), 1, - aux_sym_type_arguments_repeat1, + STATE(1339), 1, + aux_sym_tuple_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52468] = 5, + [86294] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1789), 1, - anon_sym_RPAREN, - ACTIONS(2491), 1, + ACTIONS(3750), 1, anon_sym_COMMA, - STATE(1012), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3752), 1, + anon_sym_RPAREN, + STATE(1584), 1, + aux_sym_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52485] = 5, + [86311] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2493), 1, + ACTIONS(1360), 1, + anon_sym_GT_GT, + ACTIONS(3754), 1, anon_sym_COMMA, - ACTIONS(2495), 1, - anon_sym_RPAREN, - STATE(917), 1, - aux_sym_type_arguments_repeat1, + STATE(1473), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52502] = 5, + [86328] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - ACTIONS(2497), 1, - anon_sym_EQ, - STATE(1274), 1, - sym__type_annotation, + ACTIONS(3272), 1, + sym__name, + ACTIONS(3756), 1, + anon_sym_RPAREN, + STATE(1722), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52519] = 5, + [86345] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(798), 1, - sym_external_function_body, - STATE(1101), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52536] = 5, + ACTIONS(3758), 3, + anon_sym_RBRACE, + anon_sym_AT, + sym__upname, + [86358] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - ACTIONS(2499), 1, - anon_sym_EQ, - STATE(1277), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52553] = 5, + ACTIONS(3760), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DASH, + [86371] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1568), 1, - anon_sym_RPAREN, - ACTIONS(2501), 1, + ACTIONS(2249), 1, + anon_sym_LT_DASH, + ACTIONS(3762), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_constant_record_arguments_repeat1, + STATE(1546), 1, + aux_sym_use_assignments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52570] = 5, + [86388] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2503), 1, - anon_sym_COMMA, - ACTIONS(2506), 1, - anon_sym_RPAREN, - STATE(1012), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3240), 1, + anon_sym_COLON, + ACTIONS(3764), 1, + anon_sym_EQ, + STATE(1861), 1, + sym__constant_type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52587] = 5, + [86405] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - sym__name, - ACTIONS(2508), 1, + ACTIONS(3756), 1, anon_sym_RPAREN, - STATE(1086), 1, - sym_type_parameter, + ACTIONS(3766), 1, + anon_sym_COMMA, + STATE(1466), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52604] = 5, + [86422] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2510), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - ACTIONS(2513), 1, - anon_sym_RPAREN, - STATE(1014), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3770), 1, + anon_sym_GT_GT, + STATE(1593), 1, + aux_sym__expression_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52621] = 5, + [86439] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1670), 1, - anon_sym_RPAREN, - ACTIONS(2515), 1, - anon_sym_COMMA, - STATE(887), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(1048), 1, + anon_sym_LBRACE, + ACTIONS(3772), 1, + anon_sym_DASH_GT, + STATE(60), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52638] = 5, + [86456] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2517), 1, - anon_sym_COMMA, - ACTIONS(2519), 1, - anon_sym_RPAREN, - STATE(920), 1, - aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52655] = 5, + ACTIONS(3774), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + [86469] = 5, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1894), 1, - anon_sym_RPAREN, - ACTIONS(2521), 1, - anon_sym_COMMA, - STATE(1028), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3156), 1, + anon_sym_COLON, + ACTIONS(3776), 1, + anon_sym_EQ, + STATE(1888), 1, + sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52672] = 3, + [86486] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2089), 3, + ACTIONS(3778), 2, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DASH, - [52685] = 5, + anon_sym_RPAREN, + [86498] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - sym__name, - ACTIONS(2523), 1, - anon_sym_RPAREN, - STATE(1086), 1, - sym_type_parameter, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1849), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52702] = 5, + [86512] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2525), 1, - anon_sym_COMMA, - ACTIONS(2527), 1, - anon_sym_RPAREN, - STATE(1005), 1, - aux_sym_type_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52719] = 5, + ACTIONS(3780), 2, + anon_sym_COMMA, + anon_sym_LT_DASH, + [86524] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2529), 1, - anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_RPAREN, - STATE(1021), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3782), 1, + anon_sym_LPAREN, + STATE(660), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52736] = 5, + [86538] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2534), 1, - anon_sym_COMMA, - ACTIONS(2536), 1, - anon_sym_RPAREN, - STATE(1006), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3784), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52753] = 5, + [86552] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(928), 1, - anon_sym_GT_GT, - ACTIONS(2538), 1, - anon_sym_COMMA, - STATE(923), 1, - aux_sym__expression_bit_string_repeat1, + ACTIONS(2920), 1, + sym__name, + STATE(1613), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52770] = 5, + [86566] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - sym__name, - ACTIONS(2540), 1, - anon_sym_RPAREN, - STATE(1039), 1, - sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52787] = 5, + ACTIONS(3786), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [86578] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2544), 1, - anon_sym_RPAREN, - STATE(1011), 1, - aux_sym_constant_record_arguments_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52804] = 5, + ACTIONS(3746), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86590] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1600), 1, - anon_sym_GT_GT, - ACTIONS(2546), 1, - anon_sym_COMMA, - STATE(954), 1, - aux_sym__constant_bit_string_repeat1, + ACTIONS(2920), 1, + sym__name, + STATE(1614), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52821] = 5, + [86604] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1676), 1, - anon_sym_RBRACK, - ACTIONS(2548), 1, - anon_sym_COMMA, - STATE(887), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + STATE(1882), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52838] = 5, + [86618] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2550), 1, - anon_sym_COMMA, - ACTIONS(2553), 1, - anon_sym_RPAREN, - STATE(1028), 1, - aux_sym_function_parameters_repeat1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + STATE(1881), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52855] = 5, + [86632] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2251), 1, - anon_sym_COLON, - ACTIONS(2555), 1, - anon_sym_EQ, - STATE(1291), 1, - sym__constant_type_annotation, + ACTIONS(3790), 1, + sym__name, + STATE(1188), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52872] = 5, + [86646] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2557), 1, - anon_sym_COMMA, - ACTIONS(2559), 1, - anon_sym_RPAREN, - STATE(1015), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(3792), 1, + sym__name, + STATE(654), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52889] = 5, + [86660] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2561), 1, - anon_sym_COMMA, - ACTIONS(2563), 1, - anon_sym_RPAREN, - STATE(1040), 1, - aux_sym_arguments_repeat1, + ACTIONS(2920), 1, + sym__name, + STATE(1647), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52906] = 5, + [86674] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1997), 1, - anon_sym_RBRACE, - ACTIONS(2565), 1, - anon_sym_COMMA, - STATE(982), 1, - aux_sym_unqualified_imports_repeat1, + ACTIONS(3794), 1, + sym__name, + STATE(657), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52923] = 5, + [86688] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(501), 1, - sym_external_function_body, - STATE(1133), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52940] = 5, + ACTIONS(3796), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [86700] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2104), 1, - anon_sym_COLON, - ACTIONS(2567), 1, + ACTIONS(1846), 1, + anon_sym_LBRACE, + ACTIONS(1848), 1, anon_sym_EQ, - STATE(1203), 1, - sym__type_annotation, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52957] = 5, + [86714] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(763), 1, - anon_sym_RPAREN, - ACTIONS(2569), 1, - anon_sym_COMMA, - STATE(822), 1, - aux_sym_tuple_repeat1, + ACTIONS(2723), 1, + sym__upname, + STATE(1484), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [52974] = 3, + [86728] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2122), 3, - anon_sym_if, - anon_sym_DASH_GT, - anon_sym_PIPE, - [52987] = 5, - ACTIONS(3), 1, - sym_module_comment, - ACTIONS(2571), 1, + ACTIONS(3798), 2, anon_sym_COMMA, - ACTIONS(2574), 1, anon_sym_RPAREN, - STATE(1037), 1, - aux_sym_anonymous_function_parameters_repeat1, + [86740] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(1048), 1, + anon_sym_LBRACE, + STATE(55), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53004] = 5, + [86754] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2364), 1, + ACTIONS(3800), 1, anon_sym_LPAREN, - ACTIONS(2576), 1, - anon_sym_DASH_GT, - STATE(1289), 1, - sym_function_parameter_types, + STATE(1200), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53021] = 5, + [86768] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2578), 1, - anon_sym_COMMA, - ACTIONS(2580), 1, - anon_sym_RPAREN, - STATE(1049), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2920), 1, + sym__name, + STATE(1210), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53038] = 5, + [86782] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(397), 1, - anon_sym_RPAREN, - ACTIONS(2582), 1, - anon_sym_COMMA, - STATE(942), 1, - aux_sym_arguments_repeat1, + ACTIONS(1044), 1, + sym__upname, + STATE(238), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53055] = 5, + [86796] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2584), 1, - anon_sym_RBRACE, - ACTIONS(2586), 1, - anon_sym_COMMA, - STATE(1032), 1, - aux_sym_unqualified_imports_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53072] = 3, + ACTIONS(3802), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86808] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2588), 3, + ACTIONS(3798), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [53085] = 5, + [86820] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2590), 1, - anon_sym_COMMA, - ACTIONS(2592), 1, - anon_sym_RBRACK, - STATE(1027), 1, - aux_sym_constant_tuple_repeat1, + ACTIONS(2920), 1, + sym__name, + STATE(1433), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53102] = 5, + [86834] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2594), 1, - anon_sym_COMMA, - ACTIONS(2596), 1, - anon_sym_GT_GT, - STATE(1026), 1, - aux_sym__constant_bit_string_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53119] = 5, + ACTIONS(2417), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86846] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2598), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3250), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2600), 1, - anon_sym_RPAREN, - STATE(976), 1, - aux_sym_constant_tuple_repeat1, + [86858] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(2723), 1, + sym__upname, + STATE(1738), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53136] = 3, + [86872] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2130), 3, + ACTIONS(3689), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT, - [53149] = 5, + [86884] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2602), 1, - anon_sym_COMMA, - ACTIONS(2605), 1, - anon_sym_RPAREN, - STATE(1047), 1, - aux_sym_record_update_arguments_repeat1, + ACTIONS(3804), 1, + anon_sym_type, + ACTIONS(3806), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53166] = 5, + [86898] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, - sym__name, - ACTIONS(2607), 1, - anon_sym_RPAREN, - STATE(1086), 1, - sym_type_parameter, + ACTIONS(3808), 1, + anon_sym_type, + ACTIONS(3810), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53183] = 5, + [86912] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2607), 1, - anon_sym_RPAREN, - ACTIONS(2609), 1, - anon_sym_COMMA, - STATE(1014), 1, - aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53200] = 3, + ACTIONS(3812), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86924] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2611), 2, + ACTIONS(3262), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [53212] = 4, + anon_sym_GT_GT, + [86936] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2613), 1, + ACTIONS(3814), 1, anon_sym_LPAREN, - STATE(11), 1, + STATE(255), 1, sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53226] = 4, + [86950] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1054), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53240] = 4, + ACTIONS(3816), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86962] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1057), 1, - sym_identifier, + ACTIONS(3818), 1, + anon_sym_COLON, + ACTIONS(3820), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53254] = 4, + [86976] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2615), 1, - anon_sym_LPAREN, - STATE(1278), 1, - sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53268] = 4, + ACTIONS(3822), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [86988] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2617), 1, - anon_sym_LBRACE, - ACTIONS(2619), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53282] = 4, + ACTIONS(3824), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [87000] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2615), 1, - anon_sym_LPAREN, - STATE(1225), 1, - sym_external_function_parameters, + ACTIONS(3136), 1, + sym__name, + STATE(209), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53296] = 4, + [87014] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2615), 1, - anon_sym_LPAREN, - STATE(1276), 1, - sym_external_function_parameters, + ACTIONS(451), 1, + sym__upname, + STATE(172), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53310] = 4, + [87028] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1071), 1, - sym_identifier, + ACTIONS(71), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53324] = 4, + [87042] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2621), 1, + ACTIONS(3826), 1, sym__name, - STATE(398), 1, - sym_module, + STATE(270), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53338] = 4, + [87056] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - STATE(709), 1, - sym_type_identifier, + ACTIONS(3788), 1, + anon_sym_LPAREN, + STATE(1802), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53352] = 3, + [87070] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2605), 2, + ACTIONS(2427), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53364] = 4, + [87082] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(1079), 1, - sym_anonymous_function_parameters, + ACTIONS(53), 1, + anon_sym_DQUOTE, + STATE(753), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53378] = 3, + [87096] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(1238), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2623), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53390] = 4, + [87110] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(921), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53404] = 3, + ACTIONS(3830), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87122] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3832), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2625), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53416] = 4, + [87136] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, + ACTIONS(3834), 1, + anon_sym_LPAREN, + STATE(208), 1, + sym_arguments, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [87150] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3130), 1, anon_sym_LPAREN, - STATE(1176), 1, + STATE(1412), 1, sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53430] = 4, + [87164] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2627), 1, - anon_sym_LBRACE, - ACTIONS(2629), 1, - anon_sym_EQ, + ACTIONS(3836), 1, + sym__name, + STATE(1210), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53444] = 4, + [87178] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2631), 1, - anon_sym_COMMA, - ACTIONS(2633), 1, - anon_sym_RPAREN, + ACTIONS(3788), 1, + anon_sym_LPAREN, + STATE(1778), 1, + sym_external_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53458] = 3, + [87192] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1767), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2553), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53470] = 4, + [87206] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2635), 1, - anon_sym_type, - ACTIONS(2637), 1, - anon_sym_fn, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1772), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53484] = 4, + [87220] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2639), 1, + ACTIONS(3130), 1, anon_sym_LPAREN, - STATE(1090), 1, - sym_function_parameters, + STATE(1508), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53498] = 3, + [87234] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1080), 1, + sym__upname, + STATE(21), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2641), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53510] = 4, + [87248] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2643), 1, + ACTIONS(3836), 1, sym__name, - STATE(766), 1, + STATE(1188), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53524] = 4, + [87262] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1093), 1, - sym_function_parameters, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1807), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53538] = 3, + [87276] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1012), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2645), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53550] = 4, + [87290] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(1080), 1, - sym_anonymous_function_parameters, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1810), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53564] = 3, + [87304] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2920), 1, + sym__name, + STATE(1624), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2647), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53576] = 3, + [87318] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2649), 2, + ACTIONS(3622), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [53588] = 4, + anon_sym_LT_DASH, + [87330] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2651), 1, - anon_sym_LBRACE, - ACTIONS(2653), 1, - anon_sym_DASH_GT, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53602] = 4, + [87344] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2655), 1, - anon_sym_LBRACE, - ACTIONS(2657), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53616] = 4, + ACTIONS(3604), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87356] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2659), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_unqualified_imports, + ACTIONS(3800), 1, + anon_sym_LPAREN, + STATE(1202), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53630] = 3, + [87370] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2661), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53642] = 3, + ACTIONS(3838), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [87382] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2892), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2220), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [53654] = 3, + [87396] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2532), 2, + ACTIONS(3599), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [53666] = 3, + anon_sym_GT_GT, + [87408] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2663), 2, + ACTIONS(3840), 2, anon_sym_LBRACE, anon_sym_DASH_GT, - [53678] = 3, + [87420] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3842), 1, + anon_sym_type, + ACTIONS(3844), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2513), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53690] = 4, + [87434] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2118), 1, + ACTIONS(2910), 1, sym__name, - STATE(150), 1, + STATE(647), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53704] = 4, + [87448] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2665), 1, - anon_sym_type, - ACTIONS(2667), 1, - anon_sym_fn, + ACTIONS(101), 1, + sym__upname, + STATE(549), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53718] = 3, + [87462] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(451), 1, + sym__upname, + STATE(1740), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2506), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53730] = 4, + [87476] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2669), 1, - anon_sym_LBRACE, - ACTIONS(2671), 1, - anon_sym_DASH_GT, + ACTIONS(3846), 1, + anon_sym_LPAREN, + STATE(568), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53744] = 3, + [87490] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1857), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2673), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53756] = 4, + [87504] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2675), 1, - anon_sym_LBRACE, - ACTIONS(2677), 1, - anon_sym_EQ, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1563), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53770] = 4, + [87518] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2679), 1, - anon_sym_LBRACE, - ACTIONS(2681), 1, - anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53784] = 3, + ACTIONS(3615), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87530] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3848), 1, + anon_sym_LPAREN, + STATE(650), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2683), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53796] = 4, + [87544] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2685), 1, - anon_sym_LBRACE, - ACTIONS(2687), 1, - anon_sym_DASH_GT, + ACTIONS(3782), 1, + anon_sym_LPAREN, + STATE(655), 1, + sym_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53810] = 3, + [87558] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2574), 2, + ACTIONS(3331), 2, anon_sym_COMMA, anon_sym_RPAREN, - [53822] = 4, + [87570] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2224), 1, + ACTIONS(2920), 1, sym__name, - STATE(1086), 1, - sym_type_parameter, + STATE(1656), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53836] = 3, + [87584] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3850), 1, + sym__name, + STATE(570), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53848] = 3, + [87598] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1889), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2689), 2, + [87612] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3852), 1, anon_sym_COMMA, + ACTIONS(3854), 1, anon_sym_RPAREN, - [53860] = 4, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [87626] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2691), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53874] = 4, + ACTIONS(3856), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87638] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(303), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - STATE(794), 1, + STATE(1890), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53888] = 3, + [87652] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(1812), 1, + sym__upname, + STATE(1258), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2611), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53900] = 3, + [87666] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2920), 1, + sym__name, + STATE(1201), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2693), 2, - anon_sym_RBRACE, - sym__upname, - [53912] = 4, + [87680] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1236), 1, - sym_string, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1601), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53926] = 4, + [87694] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(315), 1, - sym__upname, - STATE(296), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53940] = 4, + ACTIONS(3858), 2, + anon_sym_LBRACE, + anon_sym_DASH_GT, + [87706] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, + ACTIONS(441), 1, anon_sym_DQUOTE, - STATE(1210), 1, + STATE(1869), 1, sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53954] = 3, + [87720] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2791), 1, + sym__upname, + STATE(645), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2695), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [53966] = 4, + [87734] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(1095), 1, - sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [53980] = 3, + ACTIONS(3802), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87746] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1870), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2463), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53992] = 4, + [87760] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2697), 1, - sym__name, - STATE(445), 1, - sym_identifier, + ACTIONS(451), 1, + sym__upname, + STATE(1346), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54006] = 4, + [87774] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2699), 1, - sym__name, - STATE(769), 1, - sym_module, + ACTIONS(2723), 1, + sym__upname, + STATE(1103), 1, + sym_type_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54020] = 4, + [87788] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2615), 1, - anon_sym_LPAREN, - STATE(1222), 1, - sym_external_function_parameters, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1843), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54034] = 3, + [87802] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2701), 2, + ACTIONS(3548), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54046] = 3, + [87814] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(189), 1, + anon_sym_LBRACE, + STATE(587), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2703), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54058] = 4, + [87828] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2705), 1, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1836), 1, + sym_string, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [87842] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(3860), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, - anon_sym_DASH_GT, + STATE(686), 1, + sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54072] = 4, + [87856] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2709), 1, + ACTIONS(3130), 1, anon_sym_LPAREN, - STATE(373), 1, - sym_arguments, + STATE(1440), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54086] = 4, + [87870] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2711), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_unqualified_imports, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54100] = 4, + ACTIONS(3778), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87882] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2713), 1, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + ACTIONS(3862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87894] = 4, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(411), 1, anon_sym_LBRACE, - ACTIONS(2715), 1, - anon_sym_EQ, + STATE(219), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54114] = 3, + [87908] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2717), 2, + ACTIONS(3864), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54126] = 3, + [87920] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2258), 2, + ACTIONS(3866), 2, anon_sym_COMMA, - anon_sym_GT_GT, - [54138] = 4, + anon_sym_RPAREN, + [87932] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2719), 1, + ACTIONS(3868), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - anon_sym_DASH_GT, + ACTIONS(3870), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54152] = 3, + [87946] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(63), 1, + sym__upname, + STATE(61), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2723), 2, - anon_sym_RBRACE, - sym__upname, - [54164] = 4, + [87960] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2725), 1, + ACTIONS(3122), 1, sym__name, - STATE(364), 1, + STATE(73), 1, sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54178] = 4, + [87974] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(834), 1, - sym__upname, - STATE(316), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54192] = 4, + ACTIONS(3234), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [87986] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(57), 1, - sym__upname, - STATE(18), 1, - sym_constructor_name, + ACTIONS(91), 1, + anon_sym_DQUOTE, + STATE(1257), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54206] = 3, + [88000] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3872), 1, + sym__name, + STATE(1206), 1, + sym_module, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2727), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54218] = 4, + [88014] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2729), 1, - sym__name, - STATE(21), 1, - sym_label, + ACTIONS(3874), 1, + anon_sym_LPAREN, + STATE(876), 1, + sym_arguments, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54232] = 3, + [88028] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3272), 1, + sym__name, + STATE(1722), 1, + sym_type_parameter, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2731), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54244] = 3, + [88042] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3790), 1, + sym__name, + STATE(1201), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2425), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54256] = 3, + [88056] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2733), 2, - anon_sym_RBRACE, - sym__upname, - [54268] = 3, + ACTIONS(3876), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [88068] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2735), 2, + ACTIONS(3398), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54280] = 4, + [88080] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1817), 1, + ACTIONS(1114), 1, sym__upname, - STATE(404), 1, - sym_type_identifier, + STATE(572), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54294] = 4, + [88094] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(47), 1, - anon_sym_DQUOTE, - STATE(484), 1, - sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54308] = 4, + ACTIONS(3506), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88106] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1980), 1, - sym__name, - STATE(801), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54322] = 3, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88118] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(2900), 1, + sym__name, + STATE(889), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2737), 2, - anon_sym_RBRACE, - sym__upname, - [54334] = 4, + [88132] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(766), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54348] = 4, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + [88144] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(483), 1, - sym__upname, - STATE(98), 1, - sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54362] = 4, + ACTIONS(3878), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88156] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1158), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54376] = 3, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88168] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3882), 1, + anon_sym_type, + ACTIONS(3884), 1, + anon_sym_fn, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2739), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [54388] = 4, + [88182] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1056), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54402] = 4, + ACTIONS(3886), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88194] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2741), 1, - anon_sym_type, - ACTIONS(2743), 1, - anon_sym_fn, + ACTIONS(2920), 1, + sym__name, + STATE(1607), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54416] = 3, + [88208] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2745), 2, + ACTIONS(3888), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54428] = 4, + [88220] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, + ACTIONS(2920), 1, sym__name, - STATE(970), 1, + STATE(1669), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54442] = 4, + [88234] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, + ACTIONS(2920), 1, sym__name, - STATE(1029), 1, + STATE(1435), 1, sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54456] = 4, + [88248] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1275), 1, - sym_string, + ACTIONS(2920), 1, + sym__name, + STATE(1598), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54470] = 3, + [88262] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(11), 1, + anon_sym_LBRACE, + STATE(98), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2401), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54482] = 4, + [88276] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2697), 1, - sym__name, - STATE(471), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54496] = 3, + ACTIONS(3890), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [88288] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2717), 2, + ACTIONS(3470), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54508] = 3, + [88300] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2296), 2, + ACTIONS(3892), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [54520] = 4, + [88312] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - STATE(1202), 1, - sym_string, + ACTIONS(233), 1, + sym__upname, + STATE(891), 1, + sym_constructor_name, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54534] = 3, + [88326] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3130), 1, + anon_sym_LPAREN, + STATE(1537), 1, + sym_anonymous_function_parameters, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2747), 2, - anon_sym_RBRACE, - sym__upname, - [54546] = 4, + [88340] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1112), 1, - sym_identifier, + ACTIONS(203), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_block, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54560] = 3, + [88354] = 3, ACTIONS(3), 1, sym_module_comment, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2749), 2, + ACTIONS(3537), 2, anon_sym_COMMA, anon_sym_RPAREN, - [54572] = 4, + [88366] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2751), 1, - anon_sym_DOT, - ACTIONS(2753), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54586] = 4, + ACTIONS(3281), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [88378] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2755), 1, - anon_sym_type, - ACTIONS(2757), 1, - anon_sym_fn, + ACTIONS(3894), 1, + sym__name, + STATE(19), 1, + sym_label, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54600] = 4, + [88392] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2759), 1, - anon_sym_LPAREN, - STATE(312), 1, - sym_arguments, + ACTIONS(2920), 1, + sym__name, + STATE(1410), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54614] = 4, + [88406] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2761), 1, + ACTIONS(3896), 1, anon_sym_LBRACE, - ACTIONS(2763), 1, + ACTIONS(3898), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54628] = 4, + [88420] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1115), 1, - sym_function_parameters, + ACTIONS(2920), 1, + sym__name, + STATE(1740), 1, + sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54642] = 4, + [88434] = 4, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1001), 1, - sym_identifier, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1856), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54656] = 3, + [88448] = 4, ACTIONS(3), 1, sym_module_comment, + ACTIONS(441), 1, + anon_sym_DQUOTE, + STATE(1855), 1, + sym_string, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2317), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54668] = 3, + [88462] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3900), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2765), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54680] = 3, + [88473] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3902), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2237), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54692] = 4, + [88484] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2767), 1, - sym__name, - STATE(309), 1, - sym_label, + ACTIONS(3904), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54706] = 4, + [88495] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1980), 1, - sym__name, - STATE(799), 1, - sym_identifier, + ACTIONS(3906), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54720] = 4, + [88506] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1718), 1, - sym__upname, - STATE(1139), 1, - sym_type_identifier, + ACTIONS(3908), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54734] = 4, + [88517] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, + ACTIONS(3910), 1, sym__name, - STATE(1139), 1, - sym_identifier, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54748] = 3, + [88528] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3912), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2769), 2, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [54760] = 3, + [88539] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3914), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1604), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54772] = 4, + [88550] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1147), 1, - sym__upname, - STATE(630), 1, - sym_constructor_name, + ACTIONS(3916), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54786] = 3, + [88561] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3918), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2348), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - [54798] = 4, + [88572] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2771), 1, - anon_sym_LBRACE, - ACTIONS(2773), 1, - anon_sym_EQ, + ACTIONS(3920), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54812] = 3, + [88583] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3922), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2701), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54824] = 4, + [88594] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1958), 1, - sym__name, - STATE(1074), 1, - sym_identifier, + ACTIONS(3924), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54838] = 3, + [88605] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3926), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(2775), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54850] = 3, + [88616] = 3, ACTIONS(3), 1, sym_module_comment, + ACTIONS(3928), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54862] = 4, + [88627] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2777), 1, - anon_sym_LBRACE, - ACTIONS(2779), 1, - anon_sym_DASH_GT, + ACTIONS(3930), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54876] = 4, + [88638] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2639), 1, - anon_sym_LPAREN, - STATE(1121), 1, - sym_function_parameters, + ACTIONS(3932), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54890] = 3, + [88649] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2781), 1, - anon_sym_DOT, + ACTIONS(3934), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54901] = 3, + [88660] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2783), 1, - anon_sym_EQ, + ACTIONS(3820), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54912] = 3, + [88671] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2785), 1, - anon_sym_RBRACE, + ACTIONS(3936), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54923] = 3, + [88682] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2787), 1, - anon_sym_DASH_GT, + ACTIONS(3938), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54934] = 3, + [88693] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2789), 1, - anon_sym_DOT, + ACTIONS(3940), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54945] = 3, + [88704] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2791), 1, - anon_sym_DOT, + ACTIONS(3942), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54956] = 3, + [88715] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2793), 1, - anon_sym_DASH_GT, + ACTIONS(3944), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54967] = 3, + [88726] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2751), 1, - anon_sym_DOT, + ACTIONS(3946), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54978] = 3, + [88737] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2795), 1, - anon_sym_EQ, + ACTIONS(3948), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [54989] = 3, + [88748] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2797), 1, - ts_builtin_sym_end, + ACTIONS(3950), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55000] = 3, + [88759] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2799), 1, - anon_sym_RPAREN, + ACTIONS(3952), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55011] = 3, + [88770] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2801), 1, - anon_sym_COLON, + ACTIONS(3954), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55022] = 3, + [88781] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2803), 1, + ACTIONS(3956), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55033] = 3, + [88792] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2805), 1, - anon_sym_COLON, + ACTIONS(3958), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55044] = 3, + [88803] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2807), 1, - anon_sym_LPAREN, + ACTIONS(3960), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55055] = 3, + [88814] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2809), 1, + ACTIONS(3962), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55066] = 3, + [88825] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2811), 1, - anon_sym_LPAREN, + ACTIONS(3964), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55077] = 3, + [88836] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2813), 1, - anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55088] = 3, + [88847] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2815), 1, - anon_sym_COLON, + ACTIONS(3968), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55099] = 3, + [88858] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2817), 1, - anon_sym_RPAREN, + ACTIONS(3970), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55110] = 3, + [88869] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2819), 1, - anon_sym_LBRACE, + ACTIONS(3972), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55121] = 3, + [88880] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2821), 1, - anon_sym_DOT, + ACTIONS(3974), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55132] = 3, + [88891] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2823), 1, - anon_sym_EQ, + ACTIONS(3976), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55143] = 3, + [88902] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2825), 1, - anon_sym_EQ, + ACTIONS(3978), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55154] = 3, + [88913] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2827), 1, - anon_sym_RPAREN, + ACTIONS(3980), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55165] = 3, + [88924] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2829), 1, - anon_sym_EQ, + ACTIONS(3982), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55176] = 3, + [88935] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2831), 1, - anon_sym_RBRACE, + ACTIONS(3984), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55187] = 3, + [88946] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2833), 1, - anon_sym_type, + ACTIONS(3986), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55198] = 3, + [88957] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2835), 1, - anon_sym_RBRACK, + ACTIONS(3988), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55209] = 3, + [88968] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2837), 1, - anon_sym_DASH_GT, + ACTIONS(3990), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55220] = 3, + [88979] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2839), 1, - anon_sym_EQ, + ACTIONS(3992), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55231] = 3, + [88990] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2841), 1, - anon_sym_LPAREN, + ACTIONS(3994), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55242] = 3, + [89001] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2843), 1, + ACTIONS(3996), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55253] = 3, + [89012] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2845), 1, - anon_sym_LPAREN, + ACTIONS(3998), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55264] = 3, + [89023] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2847), 1, - anon_sym_LPAREN, + ACTIONS(4000), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55275] = 3, + [89034] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2849), 1, + ACTIONS(4002), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55286] = 3, + [89045] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2851), 1, - anon_sym_DASH_GT, + ACTIONS(4004), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55297] = 3, + [89056] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2853), 1, - anon_sym_COLON, + ACTIONS(4006), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55308] = 3, + [89067] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2855), 1, - sym__name, + ACTIONS(4008), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55319] = 3, + [89078] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2857), 1, - anon_sym_RBRACE, + ACTIONS(4010), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55330] = 3, + [89089] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2859), 1, + ACTIONS(4012), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55341] = 3, + [89100] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2861), 1, + ACTIONS(4014), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55352] = 3, + [89111] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2863), 1, - anon_sym_DASH_GT, + ACTIONS(4016), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55363] = 3, + [89122] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2865), 1, - anon_sym_RPAREN, + ACTIONS(4018), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55374] = 3, + [89133] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2867), 1, - anon_sym_DASH_GT, + ACTIONS(4020), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55385] = 3, + [89144] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2869), 1, + ACTIONS(4022), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55396] = 3, + [89155] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, + ACTIONS(2089), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55407] = 3, + [89166] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2873), 1, - anon_sym_DASH_GT, + ACTIONS(4024), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55418] = 3, + [89177] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2875), 1, - anon_sym_EQ, + ACTIONS(4026), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55429] = 3, + [89188] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2877), 1, - anon_sym_LBRACE, + ACTIONS(4028), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55440] = 3, + [89199] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2879), 1, + ACTIONS(4030), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55451] = 3, + [89210] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2881), 1, + ACTIONS(4032), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55462] = 3, + [89221] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2883), 1, - anon_sym_DASH_GT, + ACTIONS(4034), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55473] = 3, + [89232] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2885), 1, - anon_sym_DOT, + ACTIONS(4036), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55484] = 3, + [89243] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2887), 1, - anon_sym_DOT, + ACTIONS(3040), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55495] = 3, + [89254] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2889), 1, - anon_sym_RBRACE, + ACTIONS(4038), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55506] = 3, + [89265] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2891), 1, - anon_sym_DASH_GT, + ACTIONS(4040), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55517] = 3, + [89276] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2893), 1, - anon_sym_LPAREN, + ACTIONS(4042), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55528] = 3, + [89287] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2895), 1, - anon_sym_RPAREN, + ACTIONS(4044), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55539] = 3, + [89298] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2897), 1, - anon_sym_RBRACE, + ACTIONS(4046), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55550] = 3, + [89309] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2899), 1, - anon_sym_LPAREN, + ACTIONS(4048), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55561] = 3, + [89320] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2901), 1, + ACTIONS(4050), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55572] = 3, + [89331] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2903), 1, + ACTIONS(4052), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55583] = 3, + [89342] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2905), 1, - anon_sym_EQ, + ACTIONS(4054), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55594] = 3, + [89353] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2022), 1, - anon_sym_type, + ACTIONS(4056), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55605] = 3, + [89364] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2907), 1, - anon_sym_DOT, + ACTIONS(4058), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55616] = 3, + [89375] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2909), 1, + ACTIONS(4060), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55627] = 3, + [89386] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2911), 1, - anon_sym_LPAREN, + ACTIONS(4062), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55638] = 3, + [89397] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2913), 1, - anon_sym_COLON, + ACTIONS(4064), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55649] = 3, + [89408] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1123), 1, - anon_sym_RPAREN, + ACTIONS(4066), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55660] = 3, + [89419] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2038), 1, - anon_sym_RPAREN, + ACTIONS(4068), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55671] = 3, + [89430] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2060), 1, - anon_sym_type, + ACTIONS(4070), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55682] = 3, + [89441] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2915), 1, - anon_sym_DASH_GT, + ACTIONS(4072), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55693] = 3, + [89452] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2917), 1, - anon_sym_LBRACE, + ACTIONS(4074), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55704] = 3, + [89463] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2919), 1, - anon_sym_type, + ACTIONS(4076), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55715] = 3, + [89474] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2921), 1, - anon_sym_EQ, + ACTIONS(4078), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55726] = 3, + [89485] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2923), 1, + ACTIONS(4080), 1, + anon_sym_DASH_GT, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89496] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4082), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55737] = 3, + [89507] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2925), 1, + ACTIONS(4084), 1, anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55748] = 3, + [89518] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2927), 1, - anon_sym_RPAREN, + ACTIONS(4086), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55759] = 3, + [89529] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2929), 1, - anon_sym_DASH_GT, + ACTIONS(4088), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55770] = 3, + [89540] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2931), 1, + ACTIONS(4090), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55781] = 3, + [89551] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2933), 1, - sym__name, + ACTIONS(4092), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55792] = 3, + [89562] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2935), 1, + ACTIONS(4094), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55803] = 3, + [89573] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2937), 1, - anon_sym_RBRACK, + ACTIONS(4096), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55814] = 3, + [89584] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2939), 1, - anon_sym_RPAREN, + ACTIONS(4098), 1, + anon_sym_type, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55825] = 3, + [89595] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2941), 1, - anon_sym_LBRACE, + ACTIONS(4100), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55836] = 3, + [89606] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2943), 1, - anon_sym_LBRACE, + ACTIONS(4102), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55847] = 3, + [89617] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2945), 1, + ACTIONS(4104), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55858] = 3, + [89628] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2947), 1, - anon_sym_RBRACE, + ACTIONS(2016), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55869] = 3, + [89639] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2949), 1, - anon_sym_LBRACE, + ACTIONS(4106), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55880] = 3, + [89650] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2951), 1, - anon_sym_LBRACE, + ACTIONS(4108), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55891] = 3, + [89661] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2953), 1, + ACTIONS(4110), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55902] = 3, + [89672] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2955), 1, - anon_sym_RBRACK, + ACTIONS(4112), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55913] = 3, + [89683] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2957), 1, - anon_sym_RBRACE, + ACTIONS(4114), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55924] = 3, + [89694] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, + ACTIONS(4116), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55935] = 3, + [89705] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2961), 1, - anon_sym_LPAREN, + ACTIONS(4118), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55946] = 3, + [89716] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2963), 1, + ACTIONS(4120), 1, anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55957] = 3, + [89727] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4122), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89738] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2965), 1, + ACTIONS(4124), 1, + anon_sym_type, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89749] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4126), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55968] = 3, + [89760] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2967), 1, + ACTIONS(4128), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89771] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4130), 1, + sym__name, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89782] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4132), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55979] = 3, + [89793] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2969), 1, - anon_sym_EQ, + ACTIONS(4134), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89804] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4136), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [55990] = 3, + [89815] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2971), 1, + ACTIONS(4138), 1, anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56001] = 3, + [89826] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2973), 1, - anon_sym_RBRACK, + ACTIONS(4140), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56012] = 3, + [89837] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2975), 1, - anon_sym_RPAREN, + ACTIONS(4142), 1, + anon_sym_LT_DASH, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56023] = 3, + [89848] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2977), 1, - anon_sym_LBRACE, + ACTIONS(4144), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56034] = 3, + [89859] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2979), 1, + ACTIONS(4146), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56045] = 3, + [89870] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2981), 1, - anon_sym_LPAREN, + ACTIONS(4148), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56056] = 3, + [89881] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, + ACTIONS(4150), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56067] = 3, + [89892] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2985), 1, - anon_sym_RBRACE, + ACTIONS(4152), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56078] = 3, + [89903] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2987), 1, - anon_sym_EQ, + ACTIONS(4154), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89914] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4156), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_statement_comment, + sym_comment, + [89925] = 3, + ACTIONS(3), 1, + sym_module_comment, + ACTIONS(4158), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56089] = 3, + [89936] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2989), 1, + ACTIONS(4160), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56100] = 3, + [89947] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2991), 1, - anon_sym_RBRACK, + ACTIONS(4162), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56111] = 3, + [89958] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2993), 1, - anon_sym_DASH_GT, + ACTIONS(4164), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56122] = 3, + [89969] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(1236), 1, + ACTIONS(4166), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56133] = 3, + [89980] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2995), 1, - anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_statement_comment, sym_comment, - [56144] = 3, + [89991] = 3, ACTIONS(3), 1, sym_module_comment, - ACTIONS(2997), 1, - anon_sym_RBRACE, + ACTIONS(4170), 1, + anon_sym_DASH_GT, ACTIONS(5), 2, sym_statement_comment, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(4)] = 0, - [SMALL_STATE(5)] = 128, - [SMALL_STATE(6)] = 256, - [SMALL_STATE(7)] = 324, - [SMALL_STATE(8)] = 387, - [SMALL_STATE(9)] = 454, - [SMALL_STATE(10)] = 517, - [SMALL_STATE(11)] = 642, - [SMALL_STATE(12)] = 705, - [SMALL_STATE(13)] = 768, - [SMALL_STATE(14)] = 893, - [SMALL_STATE(15)] = 956, - [SMALL_STATE(16)] = 1081, - [SMALL_STATE(17)] = 1144, - [SMALL_STATE(18)] = 1207, - [SMALL_STATE(19)] = 1270, - [SMALL_STATE(20)] = 1333, - [SMALL_STATE(21)] = 1396, - [SMALL_STATE(22)] = 1459, - [SMALL_STATE(23)] = 1522, - [SMALL_STATE(24)] = 1585, - [SMALL_STATE(25)] = 1648, - [SMALL_STATE(26)] = 1715, - [SMALL_STATE(27)] = 1778, - [SMALL_STATE(28)] = 1903, - [SMALL_STATE(29)] = 1966, - [SMALL_STATE(30)] = 2030, - [SMALL_STATE(31)] = 2152, - [SMALL_STATE(32)] = 2274, - [SMALL_STATE(33)] = 2336, - [SMALL_STATE(34)] = 2398, - [SMALL_STATE(35)] = 2520, - [SMALL_STATE(36)] = 2642, - [SMALL_STATE(37)] = 2764, - [SMALL_STATE(38)] = 2826, - [SMALL_STATE(39)] = 2888, - [SMALL_STATE(40)] = 2952, - [SMALL_STATE(41)] = 3016, - [SMALL_STATE(42)] = 3138, - [SMALL_STATE(43)] = 3260, - [SMALL_STATE(44)] = 3322, - [SMALL_STATE(45)] = 3444, - [SMALL_STATE(46)] = 3508, - [SMALL_STATE(47)] = 3570, - [SMALL_STATE(48)] = 3632, - [SMALL_STATE(49)] = 3754, - [SMALL_STATE(50)] = 3816, - [SMALL_STATE(51)] = 3938, - [SMALL_STATE(52)] = 4060, - [SMALL_STATE(53)] = 4182, - [SMALL_STATE(54)] = 4301, - [SMALL_STATE(55)] = 4362, - [SMALL_STATE(56)] = 4481, - [SMALL_STATE(57)] = 4600, - [SMALL_STATE(58)] = 4661, - [SMALL_STATE(59)] = 4722, - [SMALL_STATE(60)] = 4803, - [SMALL_STATE(61)] = 4864, - [SMALL_STATE(62)] = 4925, - [SMALL_STATE(63)] = 4986, - [SMALL_STATE(64)] = 5105, - [SMALL_STATE(65)] = 5224, - [SMALL_STATE(66)] = 5343, - [SMALL_STATE(67)] = 5462, - [SMALL_STATE(68)] = 5531, - [SMALL_STATE(69)] = 5650, - [SMALL_STATE(70)] = 5721, - [SMALL_STATE(71)] = 5840, - [SMALL_STATE(72)] = 5901, - [SMALL_STATE(73)] = 5976, - [SMALL_STATE(74)] = 6095, - [SMALL_STATE(75)] = 6156, - [SMALL_STATE(76)] = 6233, - [SMALL_STATE(77)] = 6294, - [SMALL_STATE(78)] = 6355, - [SMALL_STATE(79)] = 6474, - [SMALL_STATE(80)] = 6535, - [SMALL_STATE(81)] = 6614, - [SMALL_STATE(82)] = 6679, - [SMALL_STATE(83)] = 6740, - [SMALL_STATE(84)] = 6859, - [SMALL_STATE(85)] = 6978, - [SMALL_STATE(86)] = 7039, - [SMALL_STATE(87)] = 7100, - [SMALL_STATE(88)] = 7219, - [SMALL_STATE(89)] = 7280, - [SMALL_STATE(90)] = 7399, - [SMALL_STATE(91)] = 7480, - [SMALL_STATE(92)] = 7541, - [SMALL_STATE(93)] = 7622, - [SMALL_STATE(94)] = 7741, - [SMALL_STATE(95)] = 7802, - [SMALL_STATE(96)] = 7863, - [SMALL_STATE(97)] = 7982, - [SMALL_STATE(98)] = 8043, - [SMALL_STATE(99)] = 8104, - [SMALL_STATE(100)] = 8165, - [SMALL_STATE(101)] = 8246, - [SMALL_STATE(102)] = 8365, - [SMALL_STATE(103)] = 8426, - [SMALL_STATE(104)] = 8545, - [SMALL_STATE(105)] = 8664, - [SMALL_STATE(106)] = 8783, - [SMALL_STATE(107)] = 8864, - [SMALL_STATE(108)] = 8983, - [SMALL_STATE(109)] = 9099, - [SMALL_STATE(110)] = 9215, - [SMALL_STATE(111)] = 9331, - [SMALL_STATE(112)] = 9447, - [SMALL_STATE(113)] = 9563, - [SMALL_STATE(114)] = 9679, - [SMALL_STATE(115)] = 9795, - [SMALL_STATE(116)] = 9911, - [SMALL_STATE(117)] = 10027, - [SMALL_STATE(118)] = 10143, - [SMALL_STATE(119)] = 10259, - [SMALL_STATE(120)] = 10375, - [SMALL_STATE(121)] = 10491, - [SMALL_STATE(122)] = 10555, - [SMALL_STATE(123)] = 10671, - [SMALL_STATE(124)] = 10787, - [SMALL_STATE(125)] = 10903, - [SMALL_STATE(126)] = 11019, - [SMALL_STATE(127)] = 11135, - [SMALL_STATE(128)] = 11251, - [SMALL_STATE(129)] = 11367, - [SMALL_STATE(130)] = 11480, - [SMALL_STATE(131)] = 11539, - [SMALL_STATE(132)] = 11598, - [SMALL_STATE(133)] = 11711, - [SMALL_STATE(134)] = 11774, - [SMALL_STATE(135)] = 11887, - [SMALL_STATE(136)] = 12000, - [SMALL_STATE(137)] = 12113, - [SMALL_STATE(138)] = 12172, - [SMALL_STATE(139)] = 12285, - [SMALL_STATE(140)] = 12344, - [SMALL_STATE(141)] = 12403, - [SMALL_STATE(142)] = 12462, - [SMALL_STATE(143)] = 12521, - [SMALL_STATE(144)] = 12634, - [SMALL_STATE(145)] = 12747, - [SMALL_STATE(146)] = 12860, - [SMALL_STATE(147)] = 12919, - [SMALL_STATE(148)] = 12978, - [SMALL_STATE(149)] = 13037, - [SMALL_STATE(150)] = 13096, - [SMALL_STATE(151)] = 13155, - [SMALL_STATE(152)] = 13218, - [SMALL_STATE(153)] = 13328, - [SMALL_STATE(154)] = 13438, - [SMALL_STATE(155)] = 13496, - [SMALL_STATE(156)] = 13606, - [SMALL_STATE(157)] = 13716, - [SMALL_STATE(158)] = 13774, - [SMALL_STATE(159)] = 13832, - [SMALL_STATE(160)] = 13942, - [SMALL_STATE(161)] = 14000, - [SMALL_STATE(162)] = 14058, - [SMALL_STATE(163)] = 14116, - [SMALL_STATE(164)] = 14176, - [SMALL_STATE(165)] = 14236, - [SMALL_STATE(166)] = 14296, - [SMALL_STATE(167)] = 14406, - [SMALL_STATE(168)] = 14516, - [SMALL_STATE(169)] = 14626, - [SMALL_STATE(170)] = 14736, - [SMALL_STATE(171)] = 14846, - [SMALL_STATE(172)] = 14956, - [SMALL_STATE(173)] = 15066, - [SMALL_STATE(174)] = 15176, - [SMALL_STATE(175)] = 15286, - [SMALL_STATE(176)] = 15346, - [SMALL_STATE(177)] = 15404, - [SMALL_STATE(178)] = 15462, - [SMALL_STATE(179)] = 15572, - [SMALL_STATE(180)] = 15682, - [SMALL_STATE(181)] = 15792, - [SMALL_STATE(182)] = 15902, - [SMALL_STATE(183)] = 16012, - [SMALL_STATE(184)] = 16122, - [SMALL_STATE(185)] = 16229, - [SMALL_STATE(186)] = 16336, - [SMALL_STATE(187)] = 16443, - [SMALL_STATE(188)] = 16550, - [SMALL_STATE(189)] = 16661, - [SMALL_STATE(190)] = 16768, - [SMALL_STATE(191)] = 16875, - [SMALL_STATE(192)] = 16982, - [SMALL_STATE(193)] = 17089, - [SMALL_STATE(194)] = 17196, - [SMALL_STATE(195)] = 17303, - [SMALL_STATE(196)] = 17410, - [SMALL_STATE(197)] = 17517, - [SMALL_STATE(198)] = 17624, - [SMALL_STATE(199)] = 17731, - [SMALL_STATE(200)] = 17838, - [SMALL_STATE(201)] = 17945, - [SMALL_STATE(202)] = 18052, - [SMALL_STATE(203)] = 18159, - [SMALL_STATE(204)] = 18266, - [SMALL_STATE(205)] = 18373, - [SMALL_STATE(206)] = 18480, - [SMALL_STATE(207)] = 18587, - [SMALL_STATE(208)] = 18694, - [SMALL_STATE(209)] = 18801, - [SMALL_STATE(210)] = 18908, - [SMALL_STATE(211)] = 19019, - [SMALL_STATE(212)] = 19130, - [SMALL_STATE(213)] = 19241, - [SMALL_STATE(214)] = 19352, - [SMALL_STATE(215)] = 19463, - [SMALL_STATE(216)] = 19570, - [SMALL_STATE(217)] = 19677, - [SMALL_STATE(218)] = 19784, - [SMALL_STATE(219)] = 19895, - [SMALL_STATE(220)] = 20002, - [SMALL_STATE(221)] = 20109, - [SMALL_STATE(222)] = 20216, - [SMALL_STATE(223)] = 20323, - [SMALL_STATE(224)] = 20434, - [SMALL_STATE(225)] = 20541, - [SMALL_STATE(226)] = 20648, - [SMALL_STATE(227)] = 20759, - [SMALL_STATE(228)] = 20866, - [SMALL_STATE(229)] = 20973, - [SMALL_STATE(230)] = 21080, - [SMALL_STATE(231)] = 21187, - [SMALL_STATE(232)] = 21294, - [SMALL_STATE(233)] = 21401, - [SMALL_STATE(234)] = 21508, - [SMALL_STATE(235)] = 21615, - [SMALL_STATE(236)] = 21726, - [SMALL_STATE(237)] = 21837, - [SMALL_STATE(238)] = 21944, - [SMALL_STATE(239)] = 22051, - [SMALL_STATE(240)] = 22162, - [SMALL_STATE(241)] = 22269, - [SMALL_STATE(242)] = 22376, - [SMALL_STATE(243)] = 22433, - [SMALL_STATE(244)] = 22490, - [SMALL_STATE(245)] = 22547, - [SMALL_STATE(246)] = 22604, - [SMALL_STATE(247)] = 22661, - [SMALL_STATE(248)] = 22718, - [SMALL_STATE(249)] = 22775, - [SMALL_STATE(250)] = 22882, - [SMALL_STATE(251)] = 22989, - [SMALL_STATE(252)] = 23096, - [SMALL_STATE(253)] = 23203, - [SMALL_STATE(254)] = 23310, - [SMALL_STATE(255)] = 23417, - [SMALL_STATE(256)] = 23474, - [SMALL_STATE(257)] = 23531, - [SMALL_STATE(258)] = 23588, - [SMALL_STATE(259)] = 23695, - [SMALL_STATE(260)] = 23802, - [SMALL_STATE(261)] = 23909, - [SMALL_STATE(262)] = 23966, - [SMALL_STATE(263)] = 24023, - [SMALL_STATE(264)] = 24080, - [SMALL_STATE(265)] = 24187, - [SMALL_STATE(266)] = 24294, - [SMALL_STATE(267)] = 24401, - [SMALL_STATE(268)] = 24458, - [SMALL_STATE(269)] = 24515, - [SMALL_STATE(270)] = 24622, - [SMALL_STATE(271)] = 24729, - [SMALL_STATE(272)] = 24836, - [SMALL_STATE(273)] = 24943, - [SMALL_STATE(274)] = 25050, - [SMALL_STATE(275)] = 25158, - [SMALL_STATE(276)] = 25263, - [SMALL_STATE(277)] = 25368, - [SMALL_STATE(278)] = 25473, - [SMALL_STATE(279)] = 25578, - [SMALL_STATE(280)] = 25683, - [SMALL_STATE(281)] = 25741, - [SMALL_STATE(282)] = 25809, - [SMALL_STATE(283)] = 25879, - [SMALL_STATE(284)] = 25951, - [SMALL_STATE(285)] = 26005, - [SMALL_STATE(286)] = 26079, - [SMALL_STATE(287)] = 26153, - [SMALL_STATE(288)] = 26217, - [SMALL_STATE(289)] = 26291, - [SMALL_STATE(290)] = 26365, - [SMALL_STATE(291)] = 26439, - [SMALL_STATE(292)] = 26501, - [SMALL_STATE(293)] = 26554, - [SMALL_STATE(294)] = 26607, - [SMALL_STATE(295)] = 26660, - [SMALL_STATE(296)] = 26713, - [SMALL_STATE(297)] = 26766, - [SMALL_STATE(298)] = 26817, - [SMALL_STATE(299)] = 26868, - [SMALL_STATE(300)] = 26922, - [SMALL_STATE(301)] = 26971, - [SMALL_STATE(302)] = 27020, - [SMALL_STATE(303)] = 27069, - [SMALL_STATE(304)] = 27118, - [SMALL_STATE(305)] = 27171, - [SMALL_STATE(306)] = 27224, - [SMALL_STATE(307)] = 27273, - [SMALL_STATE(308)] = 27322, - [SMALL_STATE(309)] = 27371, - [SMALL_STATE(310)] = 27420, - [SMALL_STATE(311)] = 27469, - [SMALL_STATE(312)] = 27518, - [SMALL_STATE(313)] = 27567, - [SMALL_STATE(314)] = 27616, - [SMALL_STATE(315)] = 27665, - [SMALL_STATE(316)] = 27714, - [SMALL_STATE(317)] = 27763, - [SMALL_STATE(318)] = 27811, - [SMALL_STATE(319)] = 27859, - [SMALL_STATE(320)] = 27907, - [SMALL_STATE(321)] = 27955, - [SMALL_STATE(322)] = 28003, - [SMALL_STATE(323)] = 28051, - [SMALL_STATE(324)] = 28099, - [SMALL_STATE(325)] = 28147, - [SMALL_STATE(326)] = 28197, - [SMALL_STATE(327)] = 28247, - [SMALL_STATE(328)] = 28297, - [SMALL_STATE(329)] = 28347, - [SMALL_STATE(330)] = 28394, - [SMALL_STATE(331)] = 28441, - [SMALL_STATE(332)] = 28496, - [SMALL_STATE(333)] = 28563, - [SMALL_STATE(334)] = 28610, - [SMALL_STATE(335)] = 28657, - [SMALL_STATE(336)] = 28704, - [SMALL_STATE(337)] = 28751, - [SMALL_STATE(338)] = 28798, - [SMALL_STATE(339)] = 28845, - [SMALL_STATE(340)] = 28912, - [SMALL_STATE(341)] = 28959, - [SMALL_STATE(342)] = 29006, - [SMALL_STATE(343)] = 29053, - [SMALL_STATE(344)] = 29100, - [SMALL_STATE(345)] = 29147, - [SMALL_STATE(346)] = 29194, - [SMALL_STATE(347)] = 29251, - [SMALL_STATE(348)] = 29318, - [SMALL_STATE(349)] = 29379, - [SMALL_STATE(350)] = 29426, - [SMALL_STATE(351)] = 29473, - [SMALL_STATE(352)] = 29520, - [SMALL_STATE(353)] = 29571, - [SMALL_STATE(354)] = 29618, - [SMALL_STATE(355)] = 29681, - [SMALL_STATE(356)] = 29746, - [SMALL_STATE(357)] = 29813, - [SMALL_STATE(358)] = 29861, - [SMALL_STATE(359)] = 29909, - [SMALL_STATE(360)] = 29957, - [SMALL_STATE(361)] = 30005, - [SMALL_STATE(362)] = 30062, - [SMALL_STATE(363)] = 30119, - [SMALL_STATE(364)] = 30162, - [SMALL_STATE(365)] = 30205, - [SMALL_STATE(366)] = 30262, - [SMALL_STATE(367)] = 30305, - [SMALL_STATE(368)] = 30348, - [SMALL_STATE(369)] = 30405, - [SMALL_STATE(370)] = 30448, - [SMALL_STATE(371)] = 30491, - [SMALL_STATE(372)] = 30534, - [SMALL_STATE(373)] = 30577, - [SMALL_STATE(374)] = 30620, - [SMALL_STATE(375)] = 30667, - [SMALL_STATE(376)] = 30714, - [SMALL_STATE(377)] = 30757, - [SMALL_STATE(378)] = 30800, - [SMALL_STATE(379)] = 30857, - [SMALL_STATE(380)] = 30914, - [SMALL_STATE(381)] = 30958, - [SMALL_STATE(382)] = 31014, - [SMALL_STATE(383)] = 31056, - [SMALL_STATE(384)] = 31102, - [SMALL_STATE(385)] = 31144, - [SMALL_STATE(386)] = 31186, - [SMALL_STATE(387)] = 31242, - [SMALL_STATE(388)] = 31286, - [SMALL_STATE(389)] = 31328, - [SMALL_STATE(390)] = 31370, - [SMALL_STATE(391)] = 31412, - [SMALL_STATE(392)] = 31454, - [SMALL_STATE(393)] = 31498, - [SMALL_STATE(394)] = 31542, - [SMALL_STATE(395)] = 31584, - [SMALL_STATE(396)] = 31630, - [SMALL_STATE(397)] = 31676, - [SMALL_STATE(398)] = 31732, - [SMALL_STATE(399)] = 31778, - [SMALL_STATE(400)] = 31855, - [SMALL_STATE(401)] = 31930, - [SMALL_STATE(402)] = 32005, - [SMALL_STATE(403)] = 32056, - [SMALL_STATE(404)] = 32105, - [SMALL_STATE(405)] = 32146, - [SMALL_STATE(406)] = 32201, - [SMALL_STATE(407)] = 32258, - [SMALL_STATE(408)] = 32303, - [SMALL_STATE(409)] = 32344, - [SMALL_STATE(410)] = 32385, - [SMALL_STATE(411)] = 32426, - [SMALL_STATE(412)] = 32467, - [SMALL_STATE(413)] = 32508, - [SMALL_STATE(414)] = 32567, - [SMALL_STATE(415)] = 32642, - [SMALL_STATE(416)] = 32685, - [SMALL_STATE(417)] = 32726, - [SMALL_STATE(418)] = 32767, - [SMALL_STATE(419)] = 32808, - [SMALL_STATE(420)] = 32849, - [SMALL_STATE(421)] = 32890, - [SMALL_STATE(422)] = 32931, - [SMALL_STATE(423)] = 32984, - [SMALL_STATE(424)] = 33037, - [SMALL_STATE(425)] = 33096, - [SMALL_STATE(426)] = 33171, - [SMALL_STATE(427)] = 33212, - [SMALL_STATE(428)] = 33253, - [SMALL_STATE(429)] = 33294, - [SMALL_STATE(430)] = 33335, - [SMALL_STATE(431)] = 33376, - [SMALL_STATE(432)] = 33417, - [SMALL_STATE(433)] = 33458, - [SMALL_STATE(434)] = 33511, - [SMALL_STATE(435)] = 33564, - [SMALL_STATE(436)] = 33607, - [SMALL_STATE(437)] = 33648, - [SMALL_STATE(438)] = 33691, - [SMALL_STATE(439)] = 33766, - [SMALL_STATE(440)] = 33843, - [SMALL_STATE(441)] = 33884, - [SMALL_STATE(442)] = 33961, - [SMALL_STATE(443)] = 34002, - [SMALL_STATE(444)] = 34077, - [SMALL_STATE(445)] = 34117, - [SMALL_STATE(446)] = 34157, - [SMALL_STATE(447)] = 34197, - [SMALL_STATE(448)] = 34237, - [SMALL_STATE(449)] = 34277, - [SMALL_STATE(450)] = 34317, - [SMALL_STATE(451)] = 34357, - [SMALL_STATE(452)] = 34397, - [SMALL_STATE(453)] = 34437, - [SMALL_STATE(454)] = 34481, - [SMALL_STATE(455)] = 34521, - [SMALL_STATE(456)] = 34561, - [SMALL_STATE(457)] = 34601, - [SMALL_STATE(458)] = 34641, - [SMALL_STATE(459)] = 34681, - [SMALL_STATE(460)] = 34721, - [SMALL_STATE(461)] = 34761, - [SMALL_STATE(462)] = 34801, - [SMALL_STATE(463)] = 34841, - [SMALL_STATE(464)] = 34881, - [SMALL_STATE(465)] = 34921, - [SMALL_STATE(466)] = 34961, - [SMALL_STATE(467)] = 35001, - [SMALL_STATE(468)] = 35041, - [SMALL_STATE(469)] = 35081, - [SMALL_STATE(470)] = 35121, - [SMALL_STATE(471)] = 35161, - [SMALL_STATE(472)] = 35201, - [SMALL_STATE(473)] = 35241, - [SMALL_STATE(474)] = 35281, - [SMALL_STATE(475)] = 35321, - [SMALL_STATE(476)] = 35361, - [SMALL_STATE(477)] = 35401, - [SMALL_STATE(478)] = 35441, - [SMALL_STATE(479)] = 35481, - [SMALL_STATE(480)] = 35521, - [SMALL_STATE(481)] = 35561, - [SMALL_STATE(482)] = 35601, - [SMALL_STATE(483)] = 35641, - [SMALL_STATE(484)] = 35681, - [SMALL_STATE(485)] = 35721, - [SMALL_STATE(486)] = 35761, - [SMALL_STATE(487)] = 35801, - [SMALL_STATE(488)] = 35841, - [SMALL_STATE(489)] = 35881, - [SMALL_STATE(490)] = 35921, - [SMALL_STATE(491)] = 35961, - [SMALL_STATE(492)] = 36001, - [SMALL_STATE(493)] = 36041, - [SMALL_STATE(494)] = 36081, - [SMALL_STATE(495)] = 36121, - [SMALL_STATE(496)] = 36161, - [SMALL_STATE(497)] = 36201, - [SMALL_STATE(498)] = 36241, - [SMALL_STATE(499)] = 36281, - [SMALL_STATE(500)] = 36321, - [SMALL_STATE(501)] = 36361, - [SMALL_STATE(502)] = 36401, - [SMALL_STATE(503)] = 36441, - [SMALL_STATE(504)] = 36512, - [SMALL_STATE(505)] = 36579, - [SMALL_STATE(506)] = 36648, - [SMALL_STATE(507)] = 36715, - [SMALL_STATE(508)] = 36784, - [SMALL_STATE(509)] = 36855, - [SMALL_STATE(510)] = 36912, - [SMALL_STATE(511)] = 36983, - [SMALL_STATE(512)] = 37050, - [SMALL_STATE(513)] = 37117, - [SMALL_STATE(514)] = 37184, - [SMALL_STATE(515)] = 37251, - [SMALL_STATE(516)] = 37318, - [SMALL_STATE(517)] = 37389, - [SMALL_STATE(518)] = 37456, - [SMALL_STATE(519)] = 37523, - [SMALL_STATE(520)] = 37594, - [SMALL_STATE(521)] = 37661, - [SMALL_STATE(522)] = 37723, - [SMALL_STATE(523)] = 37761, - [SMALL_STATE(524)] = 37799, - [SMALL_STATE(525)] = 37837, - [SMALL_STATE(526)] = 37875, - [SMALL_STATE(527)] = 37913, - [SMALL_STATE(528)] = 37981, - [SMALL_STATE(529)] = 38049, - [SMALL_STATE(530)] = 38087, - [SMALL_STATE(531)] = 38125, - [SMALL_STATE(532)] = 38163, - [SMALL_STATE(533)] = 38231, - [SMALL_STATE(534)] = 38269, - [SMALL_STATE(535)] = 38307, - [SMALL_STATE(536)] = 38345, - [SMALL_STATE(537)] = 38407, - [SMALL_STATE(538)] = 38445, - [SMALL_STATE(539)] = 38507, - [SMALL_STATE(540)] = 38575, - [SMALL_STATE(541)] = 38613, - [SMALL_STATE(542)] = 38651, - [SMALL_STATE(543)] = 38689, - [SMALL_STATE(544)] = 38751, - [SMALL_STATE(545)] = 38789, - [SMALL_STATE(546)] = 38827, - [SMALL_STATE(547)] = 38892, - [SMALL_STATE(548)] = 38957, - [SMALL_STATE(549)] = 39022, - [SMALL_STATE(550)] = 39087, - [SMALL_STATE(551)] = 39152, - [SMALL_STATE(552)] = 39217, - [SMALL_STATE(553)] = 39282, - [SMALL_STATE(554)] = 39347, - [SMALL_STATE(555)] = 39412, - [SMALL_STATE(556)] = 39477, - [SMALL_STATE(557)] = 39542, - [SMALL_STATE(558)] = 39607, - [SMALL_STATE(559)] = 39672, - [SMALL_STATE(560)] = 39737, - [SMALL_STATE(561)] = 39802, - [SMALL_STATE(562)] = 39867, - [SMALL_STATE(563)] = 39932, - [SMALL_STATE(564)] = 39991, - [SMALL_STATE(565)] = 40050, - [SMALL_STATE(566)] = 40115, - [SMALL_STATE(567)] = 40180, - [SMALL_STATE(568)] = 40245, - [SMALL_STATE(569)] = 40304, - [SMALL_STATE(570)] = 40369, - [SMALL_STATE(571)] = 40428, - [SMALL_STATE(572)] = 40487, - [SMALL_STATE(573)] = 40549, - [SMALL_STATE(574)] = 40611, - [SMALL_STATE(575)] = 40673, - [SMALL_STATE(576)] = 40735, - [SMALL_STATE(577)] = 40789, - [SMALL_STATE(578)] = 40851, - [SMALL_STATE(579)] = 40913, - [SMALL_STATE(580)] = 40967, - [SMALL_STATE(581)] = 41029, - [SMALL_STATE(582)] = 41091, - [SMALL_STATE(583)] = 41153, - [SMALL_STATE(584)] = 41207, - [SMALL_STATE(585)] = 41269, - [SMALL_STATE(586)] = 41331, - [SMALL_STATE(587)] = 41393, - [SMALL_STATE(588)] = 41452, - [SMALL_STATE(589)] = 41505, - [SMALL_STATE(590)] = 41564, - [SMALL_STATE(591)] = 41617, - [SMALL_STATE(592)] = 41670, - [SMALL_STATE(593)] = 41723, - [SMALL_STATE(594)] = 41776, - [SMALL_STATE(595)] = 41835, - [SMALL_STATE(596)] = 41894, - [SMALL_STATE(597)] = 41947, - [SMALL_STATE(598)] = 42000, - [SMALL_STATE(599)] = 42053, - [SMALL_STATE(600)] = 42112, - [SMALL_STATE(601)] = 42165, - [SMALL_STATE(602)] = 42224, - [SMALL_STATE(603)] = 42277, - [SMALL_STATE(604)] = 42336, - [SMALL_STATE(605)] = 42389, - [SMALL_STATE(606)] = 42448, - [SMALL_STATE(607)] = 42507, - [SMALL_STATE(608)] = 42560, - [SMALL_STATE(609)] = 42619, - [SMALL_STATE(610)] = 42678, - [SMALL_STATE(611)] = 42731, - [SMALL_STATE(612)] = 42784, - [SMALL_STATE(613)] = 42843, - [SMALL_STATE(614)] = 42902, - [SMALL_STATE(615)] = 42955, - [SMALL_STATE(616)] = 43008, - [SMALL_STATE(617)] = 43061, - [SMALL_STATE(618)] = 43117, - [SMALL_STATE(619)] = 43173, - [SMALL_STATE(620)] = 43229, - [SMALL_STATE(621)] = 43285, - [SMALL_STATE(622)] = 43341, - [SMALL_STATE(623)] = 43397, - [SMALL_STATE(624)] = 43453, - [SMALL_STATE(625)] = 43509, - [SMALL_STATE(626)] = 43565, - [SMALL_STATE(627)] = 43621, - [SMALL_STATE(628)] = 43654, - [SMALL_STATE(629)] = 43684, - [SMALL_STATE(630)] = 43714, - [SMALL_STATE(631)] = 43744, - [SMALL_STATE(632)] = 43773, - [SMALL_STATE(633)] = 43820, - [SMALL_STATE(634)] = 43863, - [SMALL_STATE(635)] = 43906, - [SMALL_STATE(636)] = 43935, - [SMALL_STATE(637)] = 43964, - [SMALL_STATE(638)] = 44011, - [SMALL_STATE(639)] = 44040, - [SMALL_STATE(640)] = 44083, - [SMALL_STATE(641)] = 44130, - [SMALL_STATE(642)] = 44174, - [SMALL_STATE(643)] = 44218, - [SMALL_STATE(644)] = 44262, - [SMALL_STATE(645)] = 44306, - [SMALL_STATE(646)] = 44350, - [SMALL_STATE(647)] = 44394, - [SMALL_STATE(648)] = 44438, - [SMALL_STATE(649)] = 44482, - [SMALL_STATE(650)] = 44526, - [SMALL_STATE(651)] = 44570, - [SMALL_STATE(652)] = 44611, - [SMALL_STATE(653)] = 44652, - [SMALL_STATE(654)] = 44693, - [SMALL_STATE(655)] = 44734, - [SMALL_STATE(656)] = 44775, - [SMALL_STATE(657)] = 44816, - [SMALL_STATE(658)] = 44857, - [SMALL_STATE(659)] = 44898, - [SMALL_STATE(660)] = 44939, - [SMALL_STATE(661)] = 44980, - [SMALL_STATE(662)] = 45021, - [SMALL_STATE(663)] = 45049, - [SMALL_STATE(664)] = 45087, - [SMALL_STATE(665)] = 45125, - [SMALL_STATE(666)] = 45163, - [SMALL_STATE(667)] = 45201, - [SMALL_STATE(668)] = 45239, - [SMALL_STATE(669)] = 45277, - [SMALL_STATE(670)] = 45315, - [SMALL_STATE(671)] = 45353, - [SMALL_STATE(672)] = 45391, - [SMALL_STATE(673)] = 45419, - [SMALL_STATE(674)] = 45445, - [SMALL_STATE(675)] = 45483, - [SMALL_STATE(676)] = 45521, - [SMALL_STATE(677)] = 45559, - [SMALL_STATE(678)] = 45597, - [SMALL_STATE(679)] = 45635, - [SMALL_STATE(680)] = 45673, - [SMALL_STATE(681)] = 45711, - [SMALL_STATE(682)] = 45737, - [SMALL_STATE(683)] = 45775, - [SMALL_STATE(684)] = 45801, - [SMALL_STATE(685)] = 45827, - [SMALL_STATE(686)] = 45851, - [SMALL_STATE(687)] = 45889, - [SMALL_STATE(688)] = 45927, - [SMALL_STATE(689)] = 45965, - [SMALL_STATE(690)] = 46003, - [SMALL_STATE(691)] = 46029, - [SMALL_STATE(692)] = 46067, - [SMALL_STATE(693)] = 46105, - [SMALL_STATE(694)] = 46143, - [SMALL_STATE(695)] = 46181, - [SMALL_STATE(696)] = 46209, - [SMALL_STATE(697)] = 46235, - [SMALL_STATE(698)] = 46273, - [SMALL_STATE(699)] = 46304, - [SMALL_STATE(700)] = 46331, - [SMALL_STATE(701)] = 46360, - [SMALL_STATE(702)] = 46387, - [SMALL_STATE(703)] = 46414, - [SMALL_STATE(704)] = 46447, - [SMALL_STATE(705)] = 46486, - [SMALL_STATE(706)] = 46525, - [SMALL_STATE(707)] = 46558, - [SMALL_STATE(708)] = 46589, - [SMALL_STATE(709)] = 46618, - [SMALL_STATE(710)] = 46641, - [SMALL_STATE(711)] = 46680, - [SMALL_STATE(712)] = 46702, - [SMALL_STATE(713)] = 46724, - [SMALL_STATE(714)] = 46746, - [SMALL_STATE(715)] = 46782, - [SMALL_STATE(716)] = 46818, - [SMALL_STATE(717)] = 46844, - [SMALL_STATE(718)] = 46866, - [SMALL_STATE(719)] = 46888, - [SMALL_STATE(720)] = 46910, - [SMALL_STATE(721)] = 46932, - [SMALL_STATE(722)] = 46954, - [SMALL_STATE(723)] = 46980, - [SMALL_STATE(724)] = 47002, - [SMALL_STATE(725)] = 47024, - [SMALL_STATE(726)] = 47046, - [SMALL_STATE(727)] = 47072, - [SMALL_STATE(728)] = 47108, - [SMALL_STATE(729)] = 47144, - [SMALL_STATE(730)] = 47166, - [SMALL_STATE(731)] = 47192, - [SMALL_STATE(732)] = 47213, - [SMALL_STATE(733)] = 47254, - [SMALL_STATE(734)] = 47275, - [SMALL_STATE(735)] = 47296, - [SMALL_STATE(736)] = 47317, - [SMALL_STATE(737)] = 47358, - [SMALL_STATE(738)] = 47379, - [SMALL_STATE(739)] = 47400, - [SMALL_STATE(740)] = 47421, - [SMALL_STATE(741)] = 47442, - [SMALL_STATE(742)] = 47463, - [SMALL_STATE(743)] = 47484, - [SMALL_STATE(744)] = 47517, - [SMALL_STATE(745)] = 47538, - [SMALL_STATE(746)] = 47559, - [SMALL_STATE(747)] = 47580, - [SMALL_STATE(748)] = 47601, - [SMALL_STATE(749)] = 47622, - [SMALL_STATE(750)] = 47645, - [SMALL_STATE(751)] = 47666, - [SMALL_STATE(752)] = 47687, - [SMALL_STATE(753)] = 47708, - [SMALL_STATE(754)] = 47741, - [SMALL_STATE(755)] = 47762, - [SMALL_STATE(756)] = 47783, - [SMALL_STATE(757)] = 47824, - [SMALL_STATE(758)] = 47845, - [SMALL_STATE(759)] = 47866, - [SMALL_STATE(760)] = 47887, - [SMALL_STATE(761)] = 47908, - [SMALL_STATE(762)] = 47929, - [SMALL_STATE(763)] = 47950, - [SMALL_STATE(764)] = 47970, - [SMALL_STATE(765)] = 48008, - [SMALL_STATE(766)] = 48028, - [SMALL_STATE(767)] = 48048, - [SMALL_STATE(768)] = 48068, - [SMALL_STATE(769)] = 48088, - [SMALL_STATE(770)] = 48112, - [SMALL_STATE(771)] = 48132, - [SMALL_STATE(772)] = 48159, - [SMALL_STATE(773)] = 48182, - [SMALL_STATE(774)] = 48201, - [SMALL_STATE(775)] = 48222, - [SMALL_STATE(776)] = 48241, - [SMALL_STATE(777)] = 48260, - [SMALL_STATE(778)] = 48279, - [SMALL_STATE(779)] = 48297, - [SMALL_STATE(780)] = 48315, - [SMALL_STATE(781)] = 48333, - [SMALL_STATE(782)] = 48351, - [SMALL_STATE(783)] = 48369, - [SMALL_STATE(784)] = 48387, - [SMALL_STATE(785)] = 48415, - [SMALL_STATE(786)] = 48433, - [SMALL_STATE(787)] = 48465, - [SMALL_STATE(788)] = 48497, - [SMALL_STATE(789)] = 48517, - [SMALL_STATE(790)] = 48535, - [SMALL_STATE(791)] = 48553, - [SMALL_STATE(792)] = 48571, - [SMALL_STATE(793)] = 48599, - [SMALL_STATE(794)] = 48617, - [SMALL_STATE(795)] = 48635, - [SMALL_STATE(796)] = 48653, - [SMALL_STATE(797)] = 48671, - [SMALL_STATE(798)] = 48703, - [SMALL_STATE(799)] = 48721, - [SMALL_STATE(800)] = 48739, - [SMALL_STATE(801)] = 48757, - [SMALL_STATE(802)] = 48775, - [SMALL_STATE(803)] = 48793, - [SMALL_STATE(804)] = 48811, - [SMALL_STATE(805)] = 48829, - [SMALL_STATE(806)] = 48858, - [SMALL_STATE(807)] = 48875, - [SMALL_STATE(808)] = 48899, - [SMALL_STATE(809)] = 48921, - [SMALL_STATE(810)] = 48947, - [SMALL_STATE(811)] = 48973, - [SMALL_STATE(812)] = 48997, - [SMALL_STATE(813)] = 49021, - [SMALL_STATE(814)] = 49043, - [SMALL_STATE(815)] = 49067, - [SMALL_STATE(816)] = 49091, - [SMALL_STATE(817)] = 49113, - [SMALL_STATE(818)] = 49137, - [SMALL_STATE(819)] = 49163, - [SMALL_STATE(820)] = 49187, - [SMALL_STATE(821)] = 49209, - [SMALL_STATE(822)] = 49231, - [SMALL_STATE(823)] = 49251, - [SMALL_STATE(824)] = 49275, - [SMALL_STATE(825)] = 49301, - [SMALL_STATE(826)] = 49325, - [SMALL_STATE(827)] = 49345, - [SMALL_STATE(828)] = 49371, - [SMALL_STATE(829)] = 49395, - [SMALL_STATE(830)] = 49421, - [SMALL_STATE(831)] = 49443, - [SMALL_STATE(832)] = 49466, - [SMALL_STATE(833)] = 49487, - [SMALL_STATE(834)] = 49504, - [SMALL_STATE(835)] = 49525, - [SMALL_STATE(836)] = 49544, - [SMALL_STATE(837)] = 49565, - [SMALL_STATE(838)] = 49586, - [SMALL_STATE(839)] = 49609, - [SMALL_STATE(840)] = 49632, - [SMALL_STATE(841)] = 49653, - [SMALL_STATE(842)] = 49676, - [SMALL_STATE(843)] = 49697, - [SMALL_STATE(844)] = 49716, - [SMALL_STATE(845)] = 49739, - [SMALL_STATE(846)] = 49758, - [SMALL_STATE(847)] = 49781, - [SMALL_STATE(848)] = 49802, - [SMALL_STATE(849)] = 49823, - [SMALL_STATE(850)] = 49844, - [SMALL_STATE(851)] = 49863, - [SMALL_STATE(852)] = 49882, - [SMALL_STATE(853)] = 49901, - [SMALL_STATE(854)] = 49924, - [SMALL_STATE(855)] = 49942, - [SMALL_STATE(856)] = 49960, - [SMALL_STATE(857)] = 49980, - [SMALL_STATE(858)] = 49998, - [SMALL_STATE(859)] = 50016, - [SMALL_STATE(860)] = 50032, - [SMALL_STATE(861)] = 50050, - [SMALL_STATE(862)] = 50068, - [SMALL_STATE(863)] = 50086, - [SMALL_STATE(864)] = 50104, - [SMALL_STATE(865)] = 50120, - [SMALL_STATE(866)] = 50138, - [SMALL_STATE(867)] = 50158, - [SMALL_STATE(868)] = 50178, - [SMALL_STATE(869)] = 50196, - [SMALL_STATE(870)] = 50214, - [SMALL_STATE(871)] = 50230, - [SMALL_STATE(872)] = 50250, - [SMALL_STATE(873)] = 50270, - [SMALL_STATE(874)] = 50288, - [SMALL_STATE(875)] = 50306, - [SMALL_STATE(876)] = 50326, - [SMALL_STATE(877)] = 50346, - [SMALL_STATE(878)] = 50364, - [SMALL_STATE(879)] = 50382, - [SMALL_STATE(880)] = 50400, - [SMALL_STATE(881)] = 50416, - [SMALL_STATE(882)] = 50434, - [SMALL_STATE(883)] = 50452, - [SMALL_STATE(884)] = 50468, - [SMALL_STATE(885)] = 50486, - [SMALL_STATE(886)] = 50504, - [SMALL_STATE(887)] = 50522, - [SMALL_STATE(888)] = 50540, - [SMALL_STATE(889)] = 50558, - [SMALL_STATE(890)] = 50578, - [SMALL_STATE(891)] = 50596, - [SMALL_STATE(892)] = 50614, - [SMALL_STATE(893)] = 50634, - [SMALL_STATE(894)] = 50652, - [SMALL_STATE(895)] = 50670, - [SMALL_STATE(896)] = 50690, - [SMALL_STATE(897)] = 50708, - [SMALL_STATE(898)] = 50726, - [SMALL_STATE(899)] = 50744, - [SMALL_STATE(900)] = 50762, - [SMALL_STATE(901)] = 50780, - [SMALL_STATE(902)] = 50800, - [SMALL_STATE(903)] = 50820, - [SMALL_STATE(904)] = 50838, - [SMALL_STATE(905)] = 50853, - [SMALL_STATE(906)] = 50870, - [SMALL_STATE(907)] = 50887, - [SMALL_STATE(908)] = 50900, - [SMALL_STATE(909)] = 50913, - [SMALL_STATE(910)] = 50926, - [SMALL_STATE(911)] = 50939, - [SMALL_STATE(912)] = 50956, - [SMALL_STATE(913)] = 50973, - [SMALL_STATE(914)] = 50990, - [SMALL_STATE(915)] = 51003, - [SMALL_STATE(916)] = 51016, - [SMALL_STATE(917)] = 51033, - [SMALL_STATE(918)] = 51050, - [SMALL_STATE(919)] = 51067, - [SMALL_STATE(920)] = 51084, - [SMALL_STATE(921)] = 51101, - [SMALL_STATE(922)] = 51118, - [SMALL_STATE(923)] = 51135, - [SMALL_STATE(924)] = 51152, - [SMALL_STATE(925)] = 51165, - [SMALL_STATE(926)] = 51182, - [SMALL_STATE(927)] = 51199, - [SMALL_STATE(928)] = 51214, - [SMALL_STATE(929)] = 51231, - [SMALL_STATE(930)] = 51244, - [SMALL_STATE(931)] = 51261, - [SMALL_STATE(932)] = 51278, - [SMALL_STATE(933)] = 51293, - [SMALL_STATE(934)] = 51310, - [SMALL_STATE(935)] = 51325, - [SMALL_STATE(936)] = 51342, - [SMALL_STATE(937)] = 51359, - [SMALL_STATE(938)] = 51372, - [SMALL_STATE(939)] = 51389, - [SMALL_STATE(940)] = 51404, - [SMALL_STATE(941)] = 51421, - [SMALL_STATE(942)] = 51434, - [SMALL_STATE(943)] = 51451, - [SMALL_STATE(944)] = 51468, - [SMALL_STATE(945)] = 51485, - [SMALL_STATE(946)] = 51498, - [SMALL_STATE(947)] = 51511, - [SMALL_STATE(948)] = 51528, - [SMALL_STATE(949)] = 51545, - [SMALL_STATE(950)] = 51558, - [SMALL_STATE(951)] = 51575, - [SMALL_STATE(952)] = 51588, - [SMALL_STATE(953)] = 51605, - [SMALL_STATE(954)] = 51622, - [SMALL_STATE(955)] = 51639, - [SMALL_STATE(956)] = 51656, - [SMALL_STATE(957)] = 51673, - [SMALL_STATE(958)] = 51690, - [SMALL_STATE(959)] = 51707, - [SMALL_STATE(960)] = 51724, - [SMALL_STATE(961)] = 51741, - [SMALL_STATE(962)] = 51758, - [SMALL_STATE(963)] = 51775, - [SMALL_STATE(964)] = 51792, - [SMALL_STATE(965)] = 51809, - [SMALL_STATE(966)] = 51822, - [SMALL_STATE(967)] = 51839, - [SMALL_STATE(968)] = 51856, - [SMALL_STATE(969)] = 51869, - [SMALL_STATE(970)] = 51886, - [SMALL_STATE(971)] = 51903, - [SMALL_STATE(972)] = 51920, - [SMALL_STATE(973)] = 51937, - [SMALL_STATE(974)] = 51954, - [SMALL_STATE(975)] = 51971, - [SMALL_STATE(976)] = 51984, - [SMALL_STATE(977)] = 52001, - [SMALL_STATE(978)] = 52014, - [SMALL_STATE(979)] = 52027, - [SMALL_STATE(980)] = 52044, - [SMALL_STATE(981)] = 52061, - [SMALL_STATE(982)] = 52076, - [SMALL_STATE(983)] = 52093, - [SMALL_STATE(984)] = 52110, - [SMALL_STATE(985)] = 52127, - [SMALL_STATE(986)] = 52144, - [SMALL_STATE(987)] = 52161, - [SMALL_STATE(988)] = 52178, - [SMALL_STATE(989)] = 52195, - [SMALL_STATE(990)] = 52212, - [SMALL_STATE(991)] = 52225, - [SMALL_STATE(992)] = 52238, - [SMALL_STATE(993)] = 52255, - [SMALL_STATE(994)] = 52268, - [SMALL_STATE(995)] = 52281, - [SMALL_STATE(996)] = 52298, - [SMALL_STATE(997)] = 52315, - [SMALL_STATE(998)] = 52332, - [SMALL_STATE(999)] = 52349, - [SMALL_STATE(1000)] = 52366, - [SMALL_STATE(1001)] = 52383, - [SMALL_STATE(1002)] = 52400, - [SMALL_STATE(1003)] = 52417, - [SMALL_STATE(1004)] = 52434, - [SMALL_STATE(1005)] = 52451, - [SMALL_STATE(1006)] = 52468, - [SMALL_STATE(1007)] = 52485, - [SMALL_STATE(1008)] = 52502, - [SMALL_STATE(1009)] = 52519, - [SMALL_STATE(1010)] = 52536, - [SMALL_STATE(1011)] = 52553, - [SMALL_STATE(1012)] = 52570, - [SMALL_STATE(1013)] = 52587, - [SMALL_STATE(1014)] = 52604, - [SMALL_STATE(1015)] = 52621, - [SMALL_STATE(1016)] = 52638, - [SMALL_STATE(1017)] = 52655, - [SMALL_STATE(1018)] = 52672, - [SMALL_STATE(1019)] = 52685, - [SMALL_STATE(1020)] = 52702, - [SMALL_STATE(1021)] = 52719, - [SMALL_STATE(1022)] = 52736, - [SMALL_STATE(1023)] = 52753, - [SMALL_STATE(1024)] = 52770, - [SMALL_STATE(1025)] = 52787, - [SMALL_STATE(1026)] = 52804, - [SMALL_STATE(1027)] = 52821, - [SMALL_STATE(1028)] = 52838, - [SMALL_STATE(1029)] = 52855, - [SMALL_STATE(1030)] = 52872, - [SMALL_STATE(1031)] = 52889, - [SMALL_STATE(1032)] = 52906, - [SMALL_STATE(1033)] = 52923, - [SMALL_STATE(1034)] = 52940, - [SMALL_STATE(1035)] = 52957, - [SMALL_STATE(1036)] = 52974, - [SMALL_STATE(1037)] = 52987, - [SMALL_STATE(1038)] = 53004, - [SMALL_STATE(1039)] = 53021, - [SMALL_STATE(1040)] = 53038, - [SMALL_STATE(1041)] = 53055, - [SMALL_STATE(1042)] = 53072, - [SMALL_STATE(1043)] = 53085, - [SMALL_STATE(1044)] = 53102, - [SMALL_STATE(1045)] = 53119, - [SMALL_STATE(1046)] = 53136, - [SMALL_STATE(1047)] = 53149, - [SMALL_STATE(1048)] = 53166, - [SMALL_STATE(1049)] = 53183, - [SMALL_STATE(1050)] = 53200, - [SMALL_STATE(1051)] = 53212, - [SMALL_STATE(1052)] = 53226, - [SMALL_STATE(1053)] = 53240, - [SMALL_STATE(1054)] = 53254, - [SMALL_STATE(1055)] = 53268, - [SMALL_STATE(1056)] = 53282, - [SMALL_STATE(1057)] = 53296, - [SMALL_STATE(1058)] = 53310, - [SMALL_STATE(1059)] = 53324, - [SMALL_STATE(1060)] = 53338, - [SMALL_STATE(1061)] = 53352, - [SMALL_STATE(1062)] = 53364, - [SMALL_STATE(1063)] = 53378, - [SMALL_STATE(1064)] = 53390, - [SMALL_STATE(1065)] = 53404, - [SMALL_STATE(1066)] = 53416, - [SMALL_STATE(1067)] = 53430, - [SMALL_STATE(1068)] = 53444, - [SMALL_STATE(1069)] = 53458, - [SMALL_STATE(1070)] = 53470, - [SMALL_STATE(1071)] = 53484, - [SMALL_STATE(1072)] = 53498, - [SMALL_STATE(1073)] = 53510, - [SMALL_STATE(1074)] = 53524, - [SMALL_STATE(1075)] = 53538, - [SMALL_STATE(1076)] = 53550, - [SMALL_STATE(1077)] = 53564, - [SMALL_STATE(1078)] = 53576, - [SMALL_STATE(1079)] = 53588, - [SMALL_STATE(1080)] = 53602, - [SMALL_STATE(1081)] = 53616, - [SMALL_STATE(1082)] = 53630, - [SMALL_STATE(1083)] = 53642, - [SMALL_STATE(1084)] = 53654, - [SMALL_STATE(1085)] = 53666, - [SMALL_STATE(1086)] = 53678, - [SMALL_STATE(1087)] = 53690, - [SMALL_STATE(1088)] = 53704, - [SMALL_STATE(1089)] = 53718, - [SMALL_STATE(1090)] = 53730, - [SMALL_STATE(1091)] = 53744, - [SMALL_STATE(1092)] = 53756, - [SMALL_STATE(1093)] = 53770, - [SMALL_STATE(1094)] = 53784, - [SMALL_STATE(1095)] = 53796, - [SMALL_STATE(1096)] = 53810, - [SMALL_STATE(1097)] = 53822, - [SMALL_STATE(1098)] = 53836, - [SMALL_STATE(1099)] = 53848, - [SMALL_STATE(1100)] = 53860, - [SMALL_STATE(1101)] = 53874, - [SMALL_STATE(1102)] = 53888, - [SMALL_STATE(1103)] = 53900, - [SMALL_STATE(1104)] = 53912, - [SMALL_STATE(1105)] = 53926, - [SMALL_STATE(1106)] = 53940, - [SMALL_STATE(1107)] = 53954, - [SMALL_STATE(1108)] = 53966, - [SMALL_STATE(1109)] = 53980, - [SMALL_STATE(1110)] = 53992, - [SMALL_STATE(1111)] = 54006, - [SMALL_STATE(1112)] = 54020, - [SMALL_STATE(1113)] = 54034, - [SMALL_STATE(1114)] = 54046, - [SMALL_STATE(1115)] = 54058, - [SMALL_STATE(1116)] = 54072, - [SMALL_STATE(1117)] = 54086, - [SMALL_STATE(1118)] = 54100, - [SMALL_STATE(1119)] = 54114, - [SMALL_STATE(1120)] = 54126, - [SMALL_STATE(1121)] = 54138, - [SMALL_STATE(1122)] = 54152, - [SMALL_STATE(1123)] = 54164, - [SMALL_STATE(1124)] = 54178, - [SMALL_STATE(1125)] = 54192, - [SMALL_STATE(1126)] = 54206, - [SMALL_STATE(1127)] = 54218, - [SMALL_STATE(1128)] = 54232, - [SMALL_STATE(1129)] = 54244, - [SMALL_STATE(1130)] = 54256, - [SMALL_STATE(1131)] = 54268, - [SMALL_STATE(1132)] = 54280, - [SMALL_STATE(1133)] = 54294, - [SMALL_STATE(1134)] = 54308, - [SMALL_STATE(1135)] = 54322, - [SMALL_STATE(1136)] = 54334, - [SMALL_STATE(1137)] = 54348, - [SMALL_STATE(1138)] = 54362, - [SMALL_STATE(1139)] = 54376, - [SMALL_STATE(1140)] = 54388, - [SMALL_STATE(1141)] = 54402, - [SMALL_STATE(1142)] = 54416, - [SMALL_STATE(1143)] = 54428, - [SMALL_STATE(1144)] = 54442, - [SMALL_STATE(1145)] = 54456, - [SMALL_STATE(1146)] = 54470, - [SMALL_STATE(1147)] = 54482, - [SMALL_STATE(1148)] = 54496, - [SMALL_STATE(1149)] = 54508, - [SMALL_STATE(1150)] = 54520, - [SMALL_STATE(1151)] = 54534, - [SMALL_STATE(1152)] = 54546, - [SMALL_STATE(1153)] = 54560, - [SMALL_STATE(1154)] = 54572, - [SMALL_STATE(1155)] = 54586, - [SMALL_STATE(1156)] = 54600, - [SMALL_STATE(1157)] = 54614, - [SMALL_STATE(1158)] = 54628, - [SMALL_STATE(1159)] = 54642, - [SMALL_STATE(1160)] = 54656, - [SMALL_STATE(1161)] = 54668, - [SMALL_STATE(1162)] = 54680, - [SMALL_STATE(1163)] = 54692, - [SMALL_STATE(1164)] = 54706, - [SMALL_STATE(1165)] = 54720, - [SMALL_STATE(1166)] = 54734, - [SMALL_STATE(1167)] = 54748, - [SMALL_STATE(1168)] = 54760, - [SMALL_STATE(1169)] = 54772, - [SMALL_STATE(1170)] = 54786, - [SMALL_STATE(1171)] = 54798, - [SMALL_STATE(1172)] = 54812, - [SMALL_STATE(1173)] = 54824, - [SMALL_STATE(1174)] = 54838, - [SMALL_STATE(1175)] = 54850, - [SMALL_STATE(1176)] = 54862, - [SMALL_STATE(1177)] = 54876, - [SMALL_STATE(1178)] = 54890, - [SMALL_STATE(1179)] = 54901, - [SMALL_STATE(1180)] = 54912, - [SMALL_STATE(1181)] = 54923, - [SMALL_STATE(1182)] = 54934, - [SMALL_STATE(1183)] = 54945, - [SMALL_STATE(1184)] = 54956, - [SMALL_STATE(1185)] = 54967, - [SMALL_STATE(1186)] = 54978, - [SMALL_STATE(1187)] = 54989, - [SMALL_STATE(1188)] = 55000, - [SMALL_STATE(1189)] = 55011, - [SMALL_STATE(1190)] = 55022, - [SMALL_STATE(1191)] = 55033, - [SMALL_STATE(1192)] = 55044, - [SMALL_STATE(1193)] = 55055, - [SMALL_STATE(1194)] = 55066, - [SMALL_STATE(1195)] = 55077, - [SMALL_STATE(1196)] = 55088, - [SMALL_STATE(1197)] = 55099, - [SMALL_STATE(1198)] = 55110, - [SMALL_STATE(1199)] = 55121, - [SMALL_STATE(1200)] = 55132, - [SMALL_STATE(1201)] = 55143, - [SMALL_STATE(1202)] = 55154, - [SMALL_STATE(1203)] = 55165, - [SMALL_STATE(1204)] = 55176, - [SMALL_STATE(1205)] = 55187, - [SMALL_STATE(1206)] = 55198, - [SMALL_STATE(1207)] = 55209, - [SMALL_STATE(1208)] = 55220, - [SMALL_STATE(1209)] = 55231, - [SMALL_STATE(1210)] = 55242, - [SMALL_STATE(1211)] = 55253, - [SMALL_STATE(1212)] = 55264, - [SMALL_STATE(1213)] = 55275, - [SMALL_STATE(1214)] = 55286, - [SMALL_STATE(1215)] = 55297, - [SMALL_STATE(1216)] = 55308, - [SMALL_STATE(1217)] = 55319, - [SMALL_STATE(1218)] = 55330, - [SMALL_STATE(1219)] = 55341, - [SMALL_STATE(1220)] = 55352, - [SMALL_STATE(1221)] = 55363, - [SMALL_STATE(1222)] = 55374, - [SMALL_STATE(1223)] = 55385, - [SMALL_STATE(1224)] = 55396, - [SMALL_STATE(1225)] = 55407, - [SMALL_STATE(1226)] = 55418, - [SMALL_STATE(1227)] = 55429, - [SMALL_STATE(1228)] = 55440, - [SMALL_STATE(1229)] = 55451, - [SMALL_STATE(1230)] = 55462, - [SMALL_STATE(1231)] = 55473, - [SMALL_STATE(1232)] = 55484, - [SMALL_STATE(1233)] = 55495, - [SMALL_STATE(1234)] = 55506, - [SMALL_STATE(1235)] = 55517, - [SMALL_STATE(1236)] = 55528, - [SMALL_STATE(1237)] = 55539, - [SMALL_STATE(1238)] = 55550, - [SMALL_STATE(1239)] = 55561, - [SMALL_STATE(1240)] = 55572, - [SMALL_STATE(1241)] = 55583, - [SMALL_STATE(1242)] = 55594, - [SMALL_STATE(1243)] = 55605, - [SMALL_STATE(1244)] = 55616, - [SMALL_STATE(1245)] = 55627, - [SMALL_STATE(1246)] = 55638, - [SMALL_STATE(1247)] = 55649, - [SMALL_STATE(1248)] = 55660, - [SMALL_STATE(1249)] = 55671, - [SMALL_STATE(1250)] = 55682, - [SMALL_STATE(1251)] = 55693, - [SMALL_STATE(1252)] = 55704, - [SMALL_STATE(1253)] = 55715, - [SMALL_STATE(1254)] = 55726, - [SMALL_STATE(1255)] = 55737, - [SMALL_STATE(1256)] = 55748, - [SMALL_STATE(1257)] = 55759, - [SMALL_STATE(1258)] = 55770, - [SMALL_STATE(1259)] = 55781, - [SMALL_STATE(1260)] = 55792, - [SMALL_STATE(1261)] = 55803, - [SMALL_STATE(1262)] = 55814, - [SMALL_STATE(1263)] = 55825, - [SMALL_STATE(1264)] = 55836, - [SMALL_STATE(1265)] = 55847, - [SMALL_STATE(1266)] = 55858, - [SMALL_STATE(1267)] = 55869, - [SMALL_STATE(1268)] = 55880, - [SMALL_STATE(1269)] = 55891, - [SMALL_STATE(1270)] = 55902, - [SMALL_STATE(1271)] = 55913, - [SMALL_STATE(1272)] = 55924, - [SMALL_STATE(1273)] = 55935, - [SMALL_STATE(1274)] = 55946, - [SMALL_STATE(1275)] = 55957, - [SMALL_STATE(1276)] = 55968, - [SMALL_STATE(1277)] = 55979, - [SMALL_STATE(1278)] = 55990, - [SMALL_STATE(1279)] = 56001, - [SMALL_STATE(1280)] = 56012, - [SMALL_STATE(1281)] = 56023, - [SMALL_STATE(1282)] = 56034, - [SMALL_STATE(1283)] = 56045, - [SMALL_STATE(1284)] = 56056, - [SMALL_STATE(1285)] = 56067, - [SMALL_STATE(1286)] = 56078, - [SMALL_STATE(1287)] = 56089, - [SMALL_STATE(1288)] = 56100, - [SMALL_STATE(1289)] = 56111, - [SMALL_STATE(1290)] = 56122, - [SMALL_STATE(1291)] = 56133, - [SMALL_STATE(1292)] = 56144, + [SMALL_STATE(14)] = 0, + [SMALL_STATE(15)] = 73, + [SMALL_STATE(16)] = 141, + [SMALL_STATE(17)] = 209, + [SMALL_STATE(18)] = 277, + [SMALL_STATE(19)] = 345, + [SMALL_STATE(20)] = 413, + [SMALL_STATE(21)] = 481, + [SMALL_STATE(22)] = 549, + [SMALL_STATE(23)] = 617, + [SMALL_STATE(24)] = 745, + [SMALL_STATE(25)] = 813, + [SMALL_STATE(26)] = 941, + [SMALL_STATE(27)] = 1013, + [SMALL_STATE(28)] = 1085, + [SMALL_STATE(29)] = 1213, + [SMALL_STATE(30)] = 1281, + [SMALL_STATE(31)] = 1409, + [SMALL_STATE(32)] = 1537, + [SMALL_STATE(33)] = 1605, + [SMALL_STATE(34)] = 1733, + [SMALL_STATE(35)] = 1861, + [SMALL_STATE(36)] = 1989, + [SMALL_STATE(37)] = 2117, + [SMALL_STATE(38)] = 2185, + [SMALL_STATE(39)] = 2313, + [SMALL_STATE(40)] = 2385, + [SMALL_STATE(41)] = 2513, + [SMALL_STATE(42)] = 2581, + [SMALL_STATE(43)] = 2649, + [SMALL_STATE(44)] = 2717, + [SMALL_STATE(45)] = 2845, + [SMALL_STATE(46)] = 2973, + [SMALL_STATE(47)] = 3101, + [SMALL_STATE(48)] = 3169, + [SMALL_STATE(49)] = 3237, + [SMALL_STATE(50)] = 3365, + [SMALL_STATE(51)] = 3432, + [SMALL_STATE(52)] = 3499, + [SMALL_STATE(53)] = 3566, + [SMALL_STATE(54)] = 3633, + [SMALL_STATE(55)] = 3700, + [SMALL_STATE(56)] = 3767, + [SMALL_STATE(57)] = 3838, + [SMALL_STATE(58)] = 3905, + [SMALL_STATE(59)] = 3972, + [SMALL_STATE(60)] = 4041, + [SMALL_STATE(61)] = 4108, + [SMALL_STATE(62)] = 4175, + [SMALL_STATE(63)] = 4244, + [SMALL_STATE(64)] = 4315, + [SMALL_STATE(65)] = 4382, + [SMALL_STATE(66)] = 4449, + [SMALL_STATE(67)] = 4516, + [SMALL_STATE(68)] = 4583, + [SMALL_STATE(69)] = 4650, + [SMALL_STATE(70)] = 4719, + [SMALL_STATE(71)] = 4786, + [SMALL_STATE(72)] = 4853, + [SMALL_STATE(73)] = 4920, + [SMALL_STATE(74)] = 4987, + [SMALL_STATE(75)] = 5058, + [SMALL_STATE(76)] = 5125, + [SMALL_STATE(77)] = 5194, + [SMALL_STATE(78)] = 5261, + [SMALL_STATE(79)] = 5330, + [SMALL_STATE(80)] = 5397, + [SMALL_STATE(81)] = 5464, + [SMALL_STATE(82)] = 5535, + [SMALL_STATE(83)] = 5602, + [SMALL_STATE(84)] = 5669, + [SMALL_STATE(85)] = 5735, + [SMALL_STATE(86)] = 5801, + [SMALL_STATE(87)] = 5887, + [SMALL_STATE(88)] = 5953, + [SMALL_STATE(89)] = 6019, + [SMALL_STATE(90)] = 6085, + [SMALL_STATE(91)] = 6151, + [SMALL_STATE(92)] = 6219, + [SMALL_STATE(93)] = 6287, + [SMALL_STATE(94)] = 6355, + [SMALL_STATE(95)] = 6421, + [SMALL_STATE(96)] = 6487, + [SMALL_STATE(97)] = 6553, + [SMALL_STATE(98)] = 6639, + [SMALL_STATE(99)] = 6705, + [SMALL_STATE(100)] = 6771, + [SMALL_STATE(101)] = 6837, + [SMALL_STATE(102)] = 6903, + [SMALL_STATE(103)] = 6969, + [SMALL_STATE(104)] = 7055, + [SMALL_STATE(105)] = 7143, + [SMALL_STATE(106)] = 7209, + [SMALL_STATE(107)] = 7289, + [SMALL_STATE(108)] = 7355, + [SMALL_STATE(109)] = 7421, + [SMALL_STATE(110)] = 7487, + [SMALL_STATE(111)] = 7573, + [SMALL_STATE(112)] = 7659, + [SMALL_STATE(113)] = 7725, + [SMALL_STATE(114)] = 7791, + [SMALL_STATE(115)] = 7857, + [SMALL_STATE(116)] = 7923, + [SMALL_STATE(117)] = 7989, + [SMALL_STATE(118)] = 8063, + [SMALL_STATE(119)] = 8129, + [SMALL_STATE(120)] = 8195, + [SMALL_STATE(121)] = 8271, + [SMALL_STATE(122)] = 8337, + [SMALL_STATE(123)] = 8403, + [SMALL_STATE(124)] = 8469, + [SMALL_STATE(125)] = 8535, + [SMALL_STATE(126)] = 8617, + [SMALL_STATE(127)] = 8701, + [SMALL_STATE(128)] = 8771, + [SMALL_STATE(129)] = 8836, + [SMALL_STATE(130)] = 8901, + [SMALL_STATE(131)] = 8986, + [SMALL_STATE(132)] = 9071, + [SMALL_STATE(133)] = 9136, + [SMALL_STATE(134)] = 9221, + [SMALL_STATE(135)] = 9306, + [SMALL_STATE(136)] = 9371, + [SMALL_STATE(137)] = 9436, + [SMALL_STATE(138)] = 9501, + [SMALL_STATE(139)] = 9566, + [SMALL_STATE(140)] = 9631, + [SMALL_STATE(141)] = 9696, + [SMALL_STATE(142)] = 9761, + [SMALL_STATE(143)] = 9826, + [SMALL_STATE(144)] = 9911, + [SMALL_STATE(145)] = 9976, + [SMALL_STATE(146)] = 10061, + [SMALL_STATE(147)] = 10126, + [SMALL_STATE(148)] = 10191, + [SMALL_STATE(149)] = 10276, + [SMALL_STATE(150)] = 10341, + [SMALL_STATE(151)] = 10410, + [SMALL_STATE(152)] = 10475, + [SMALL_STATE(153)] = 10560, + [SMALL_STATE(154)] = 10625, + [SMALL_STATE(155)] = 10708, + [SMALL_STATE(156)] = 10789, + [SMALL_STATE(157)] = 10868, + [SMALL_STATE(158)] = 10953, + [SMALL_STATE(159)] = 11018, + [SMALL_STATE(160)] = 11103, + [SMALL_STATE(161)] = 11178, + [SMALL_STATE(162)] = 11243, + [SMALL_STATE(163)] = 11308, + [SMALL_STATE(164)] = 11381, + [SMALL_STATE(165)] = 11446, + [SMALL_STATE(166)] = 11572, + [SMALL_STATE(167)] = 11698, + [SMALL_STATE(168)] = 11824, + [SMALL_STATE(169)] = 11950, + [SMALL_STATE(170)] = 12076, + [SMALL_STATE(171)] = 12140, + [SMALL_STATE(172)] = 12204, + [SMALL_STATE(173)] = 12268, + [SMALL_STATE(174)] = 12394, + [SMALL_STATE(175)] = 12520, + [SMALL_STATE(176)] = 12643, + [SMALL_STATE(177)] = 12766, + [SMALL_STATE(178)] = 12889, + [SMALL_STATE(179)] = 13012, + [SMALL_STATE(180)] = 13135, + [SMALL_STATE(181)] = 13258, + [SMALL_STATE(182)] = 13381, + [SMALL_STATE(183)] = 13504, + [SMALL_STATE(184)] = 13627, + [SMALL_STATE(185)] = 13750, + [SMALL_STATE(186)] = 13873, + [SMALL_STATE(187)] = 13996, + [SMALL_STATE(188)] = 14063, + [SMALL_STATE(189)] = 14186, + [SMALL_STATE(190)] = 14309, + [SMALL_STATE(191)] = 14432, + [SMALL_STATE(192)] = 14555, + [SMALL_STATE(193)] = 14678, + [SMALL_STATE(194)] = 14801, + [SMALL_STATE(195)] = 14924, + [SMALL_STATE(196)] = 15047, + [SMALL_STATE(197)] = 15170, + [SMALL_STATE(198)] = 15232, + [SMALL_STATE(199)] = 15352, + [SMALL_STATE(200)] = 15470, + [SMALL_STATE(201)] = 15532, + [SMALL_STATE(202)] = 15594, + [SMALL_STATE(203)] = 15660, + [SMALL_STATE(204)] = 15722, + [SMALL_STATE(205)] = 15784, + [SMALL_STATE(206)] = 15846, + [SMALL_STATE(207)] = 15908, + [SMALL_STATE(208)] = 15970, + [SMALL_STATE(209)] = 16032, + [SMALL_STATE(210)] = 16094, + [SMALL_STATE(211)] = 16156, + [SMALL_STATE(212)] = 16222, + [SMALL_STATE(213)] = 16284, + [SMALL_STATE(214)] = 16346, + [SMALL_STATE(215)] = 16409, + [SMALL_STATE(216)] = 16470, + [SMALL_STATE(217)] = 16531, + [SMALL_STATE(218)] = 16592, + [SMALL_STATE(219)] = 16655, + [SMALL_STATE(220)] = 16716, + [SMALL_STATE(221)] = 16779, + [SMALL_STATE(222)] = 16840, + [SMALL_STATE(223)] = 16905, + [SMALL_STATE(224)] = 16966, + [SMALL_STATE(225)] = 17027, + [SMALL_STATE(226)] = 17088, + [SMALL_STATE(227)] = 17148, + [SMALL_STATE(228)] = 17208, + [SMALL_STATE(229)] = 17322, + [SMALL_STATE(230)] = 17382, + [SMALL_STATE(231)] = 17496, + [SMALL_STATE(232)] = 17610, + [SMALL_STATE(233)] = 17722, + [SMALL_STATE(234)] = 17782, + [SMALL_STATE(235)] = 17842, + [SMALL_STATE(236)] = 17956, + [SMALL_STATE(237)] = 18016, + [SMALL_STATE(238)] = 18130, + [SMALL_STATE(239)] = 18190, + [SMALL_STATE(240)] = 18250, + [SMALL_STATE(241)] = 18310, + [SMALL_STATE(242)] = 18370, + [SMALL_STATE(243)] = 18430, + [SMALL_STATE(244)] = 18544, + [SMALL_STATE(245)] = 18658, + [SMALL_STATE(246)] = 18718, + [SMALL_STATE(247)] = 18778, + [SMALL_STATE(248)] = 18838, + [SMALL_STATE(249)] = 18902, + [SMALL_STATE(250)] = 18966, + [SMALL_STATE(251)] = 19080, + [SMALL_STATE(252)] = 19140, + [SMALL_STATE(253)] = 19200, + [SMALL_STATE(254)] = 19260, + [SMALL_STATE(255)] = 19374, + [SMALL_STATE(256)] = 19434, + [SMALL_STATE(257)] = 19548, + [SMALL_STATE(258)] = 19662, + [SMALL_STATE(259)] = 19776, + [SMALL_STATE(260)] = 19836, + [SMALL_STATE(261)] = 19896, + [SMALL_STATE(262)] = 20010, + [SMALL_STATE(263)] = 20070, + [SMALL_STATE(264)] = 20130, + [SMALL_STATE(265)] = 20190, + [SMALL_STATE(266)] = 20250, + [SMALL_STATE(267)] = 20364, + [SMALL_STATE(268)] = 20424, + [SMALL_STATE(269)] = 20484, + [SMALL_STATE(270)] = 20544, + [SMALL_STATE(271)] = 20604, + [SMALL_STATE(272)] = 20664, + [SMALL_STATE(273)] = 20724, + [SMALL_STATE(274)] = 20784, + [SMALL_STATE(275)] = 20844, + [SMALL_STATE(276)] = 20904, + [SMALL_STATE(277)] = 21015, + [SMALL_STATE(278)] = 21126, + [SMALL_STATE(279)] = 21185, + [SMALL_STATE(280)] = 21296, + [SMALL_STATE(281)] = 21355, + [SMALL_STATE(282)] = 21466, + [SMALL_STATE(283)] = 21577, + [SMALL_STATE(284)] = 21688, + [SMALL_STATE(285)] = 21747, + [SMALL_STATE(286)] = 21858, + [SMALL_STATE(287)] = 21969, + [SMALL_STATE(288)] = 22080, + [SMALL_STATE(289)] = 22139, + [SMALL_STATE(290)] = 22198, + [SMALL_STATE(291)] = 22309, + [SMALL_STATE(292)] = 22420, + [SMALL_STATE(293)] = 22531, + [SMALL_STATE(294)] = 22590, + [SMALL_STATE(295)] = 22701, + [SMALL_STATE(296)] = 22812, + [SMALL_STATE(297)] = 22923, + [SMALL_STATE(298)] = 23034, + [SMALL_STATE(299)] = 23145, + [SMALL_STATE(300)] = 23256, + [SMALL_STATE(301)] = 23367, + [SMALL_STATE(302)] = 23478, + [SMALL_STATE(303)] = 23589, + [SMALL_STATE(304)] = 23700, + [SMALL_STATE(305)] = 23759, + [SMALL_STATE(306)] = 23818, + [SMALL_STATE(307)] = 23929, + [SMALL_STATE(308)] = 24040, + [SMALL_STATE(309)] = 24151, + [SMALL_STATE(310)] = 24262, + [SMALL_STATE(311)] = 24373, + [SMALL_STATE(312)] = 24434, + [SMALL_STATE(313)] = 24495, + [SMALL_STATE(314)] = 24606, + [SMALL_STATE(315)] = 24717, + [SMALL_STATE(316)] = 24780, + [SMALL_STATE(317)] = 24891, + [SMALL_STATE(318)] = 25002, + [SMALL_STATE(319)] = 25113, + [SMALL_STATE(320)] = 25174, + [SMALL_STATE(321)] = 25285, + [SMALL_STATE(322)] = 25344, + [SMALL_STATE(323)] = 25455, + [SMALL_STATE(324)] = 25518, + [SMALL_STATE(325)] = 25629, + [SMALL_STATE(326)] = 25740, + [SMALL_STATE(327)] = 25851, + [SMALL_STATE(328)] = 25962, + [SMALL_STATE(329)] = 26023, + [SMALL_STATE(330)] = 26084, + [SMALL_STATE(331)] = 26195, + [SMALL_STATE(332)] = 26306, + [SMALL_STATE(333)] = 26417, + [SMALL_STATE(334)] = 26528, + [SMALL_STATE(335)] = 26639, + [SMALL_STATE(336)] = 26747, + [SMALL_STATE(337)] = 26819, + [SMALL_STATE(338)] = 26927, + [SMALL_STATE(339)] = 27035, + [SMALL_STATE(340)] = 27093, + [SMALL_STATE(341)] = 27201, + [SMALL_STATE(342)] = 27309, + [SMALL_STATE(343)] = 27417, + [SMALL_STATE(344)] = 27525, + [SMALL_STATE(345)] = 27637, + [SMALL_STATE(346)] = 27745, + [SMALL_STATE(347)] = 27853, + [SMALL_STATE(348)] = 27961, + [SMALL_STATE(349)] = 28073, + [SMALL_STATE(350)] = 28181, + [SMALL_STATE(351)] = 28289, + [SMALL_STATE(352)] = 28397, + [SMALL_STATE(353)] = 28505, + [SMALL_STATE(354)] = 28613, + [SMALL_STATE(355)] = 28721, + [SMALL_STATE(356)] = 28833, + [SMALL_STATE(357)] = 28941, + [SMALL_STATE(358)] = 29049, + [SMALL_STATE(359)] = 29157, + [SMALL_STATE(360)] = 29265, + [SMALL_STATE(361)] = 29373, + [SMALL_STATE(362)] = 29481, + [SMALL_STATE(363)] = 29589, + [SMALL_STATE(364)] = 29697, + [SMALL_STATE(365)] = 29755, + [SMALL_STATE(366)] = 29863, + [SMALL_STATE(367)] = 29971, + [SMALL_STATE(368)] = 30079, + [SMALL_STATE(369)] = 30187, + [SMALL_STATE(370)] = 30295, + [SMALL_STATE(371)] = 30403, + [SMALL_STATE(372)] = 30511, + [SMALL_STATE(373)] = 30619, + [SMALL_STATE(374)] = 30727, + [SMALL_STATE(375)] = 30835, + [SMALL_STATE(376)] = 30943, + [SMALL_STATE(377)] = 31051, + [SMALL_STATE(378)] = 31159, + [SMALL_STATE(379)] = 31271, + [SMALL_STATE(380)] = 31379, + [SMALL_STATE(381)] = 31487, + [SMALL_STATE(382)] = 31595, + [SMALL_STATE(383)] = 31707, + [SMALL_STATE(384)] = 31815, + [SMALL_STATE(385)] = 31923, + [SMALL_STATE(386)] = 32031, + [SMALL_STATE(387)] = 32139, + [SMALL_STATE(388)] = 32247, + [SMALL_STATE(389)] = 32355, + [SMALL_STATE(390)] = 32463, + [SMALL_STATE(391)] = 32571, + [SMALL_STATE(392)] = 32651, + [SMALL_STATE(393)] = 32763, + [SMALL_STATE(394)] = 32871, + [SMALL_STATE(395)] = 32983, + [SMALL_STATE(396)] = 33095, + [SMALL_STATE(397)] = 33203, + [SMALL_STATE(398)] = 33311, + [SMALL_STATE(399)] = 33419, + [SMALL_STATE(400)] = 33527, + [SMALL_STATE(401)] = 33635, + [SMALL_STATE(402)] = 33743, + [SMALL_STATE(403)] = 33801, + [SMALL_STATE(404)] = 33909, + [SMALL_STATE(405)] = 33967, + [SMALL_STATE(406)] = 34075, + [SMALL_STATE(407)] = 34183, + [SMALL_STATE(408)] = 34291, + [SMALL_STATE(409)] = 34399, + [SMALL_STATE(410)] = 34507, + [SMALL_STATE(411)] = 34565, + [SMALL_STATE(412)] = 34623, + [SMALL_STATE(413)] = 34681, + [SMALL_STATE(414)] = 34793, + [SMALL_STATE(415)] = 34905, + [SMALL_STATE(416)] = 35013, + [SMALL_STATE(417)] = 35121, + [SMALL_STATE(418)] = 35229, + [SMALL_STATE(419)] = 35287, + [SMALL_STATE(420)] = 35345, + [SMALL_STATE(421)] = 35403, + [SMALL_STATE(422)] = 35461, + [SMALL_STATE(423)] = 35569, + [SMALL_STATE(424)] = 35677, + [SMALL_STATE(425)] = 35789, + [SMALL_STATE(426)] = 35897, + [SMALL_STATE(427)] = 36005, + [SMALL_STATE(428)] = 36117, + [SMALL_STATE(429)] = 36175, + [SMALL_STATE(430)] = 36241, + [SMALL_STATE(431)] = 36349, + [SMALL_STATE(432)] = 36417, + [SMALL_STATE(433)] = 36529, + [SMALL_STATE(434)] = 36603, + [SMALL_STATE(435)] = 36679, + [SMALL_STATE(436)] = 36741, + [SMALL_STATE(437)] = 36799, + [SMALL_STATE(438)] = 36907, + [SMALL_STATE(439)] = 36985, + [SMALL_STATE(440)] = 37063, + [SMALL_STATE(441)] = 37175, + [SMALL_STATE(442)] = 37233, + [SMALL_STATE(443)] = 37341, + [SMALL_STATE(444)] = 37449, + [SMALL_STATE(445)] = 37507, + [SMALL_STATE(446)] = 37615, + [SMALL_STATE(447)] = 37727, + [SMALL_STATE(448)] = 37835, + [SMALL_STATE(449)] = 37943, + [SMALL_STATE(450)] = 38051, + [SMALL_STATE(451)] = 38159, + [SMALL_STATE(452)] = 38267, + [SMALL_STATE(453)] = 38375, + [SMALL_STATE(454)] = 38483, + [SMALL_STATE(455)] = 38591, + [SMALL_STATE(456)] = 38699, + [SMALL_STATE(457)] = 38807, + [SMALL_STATE(458)] = 38915, + [SMALL_STATE(459)] = 39023, + [SMALL_STATE(460)] = 39131, + [SMALL_STATE(461)] = 39239, + [SMALL_STATE(462)] = 39297, + [SMALL_STATE(463)] = 39405, + [SMALL_STATE(464)] = 39483, + [SMALL_STATE(465)] = 39541, + [SMALL_STATE(466)] = 39599, + [SMALL_STATE(467)] = 39657, + [SMALL_STATE(468)] = 39765, + [SMALL_STATE(469)] = 39823, + [SMALL_STATE(470)] = 39935, + [SMALL_STATE(471)] = 40043, + [SMALL_STATE(472)] = 40151, + [SMALL_STATE(473)] = 40259, + [SMALL_STATE(474)] = 40367, + [SMALL_STATE(475)] = 40475, + [SMALL_STATE(476)] = 40587, + [SMALL_STATE(477)] = 40695, + [SMALL_STATE(478)] = 40803, + [SMALL_STATE(479)] = 40911, + [SMALL_STATE(480)] = 41019, + [SMALL_STATE(481)] = 41127, + [SMALL_STATE(482)] = 41235, + [SMALL_STATE(483)] = 41343, + [SMALL_STATE(484)] = 41455, + [SMALL_STATE(485)] = 41563, + [SMALL_STATE(486)] = 41671, + [SMALL_STATE(487)] = 41779, + [SMALL_STATE(488)] = 41887, + [SMALL_STATE(489)] = 41995, + [SMALL_STATE(490)] = 42103, + [SMALL_STATE(491)] = 42211, + [SMALL_STATE(492)] = 42319, + [SMALL_STATE(493)] = 42427, + [SMALL_STATE(494)] = 42505, + [SMALL_STATE(495)] = 42613, + [SMALL_STATE(496)] = 42725, + [SMALL_STATE(497)] = 42833, + [SMALL_STATE(498)] = 42945, + [SMALL_STATE(499)] = 43053, + [SMALL_STATE(500)] = 43161, + [SMALL_STATE(501)] = 43269, + [SMALL_STATE(502)] = 43377, + [SMALL_STATE(503)] = 43455, + [SMALL_STATE(504)] = 43563, + [SMALL_STATE(505)] = 43671, + [SMALL_STATE(506)] = 43783, + [SMALL_STATE(507)] = 43891, + [SMALL_STATE(508)] = 43999, + [SMALL_STATE(509)] = 44107, + [SMALL_STATE(510)] = 44184, + [SMALL_STATE(511)] = 44261, + [SMALL_STATE(512)] = 44338, + [SMALL_STATE(513)] = 44395, + [SMALL_STATE(514)] = 44456, + [SMALL_STATE(515)] = 44531, + [SMALL_STATE(516)] = 44608, + [SMALL_STATE(517)] = 44681, + [SMALL_STATE(518)] = 44752, + [SMALL_STATE(519)] = 44819, + [SMALL_STATE(520)] = 44884, + [SMALL_STATE(521)] = 44941, + [SMALL_STATE(522)] = 45050, + [SMALL_STATE(523)] = 45127, + [SMALL_STATE(524)] = 45204, + [SMALL_STATE(525)] = 45281, + [SMALL_STATE(526)] = 45358, + [SMALL_STATE(527)] = 45435, + [SMALL_STATE(528)] = 45512, + [SMALL_STATE(529)] = 45618, + [SMALL_STATE(530)] = 45724, + [SMALL_STATE(531)] = 45830, + [SMALL_STATE(532)] = 45936, + [SMALL_STATE(533)] = 46042, + [SMALL_STATE(534)] = 46148, + [SMALL_STATE(535)] = 46254, + [SMALL_STATE(536)] = 46360, + [SMALL_STATE(537)] = 46466, + [SMALL_STATE(538)] = 46572, + [SMALL_STATE(539)] = 46678, + [SMALL_STATE(540)] = 46784, + [SMALL_STATE(541)] = 46890, + [SMALL_STATE(542)] = 46996, + [SMALL_STATE(543)] = 47102, + [SMALL_STATE(544)] = 47208, + [SMALL_STATE(545)] = 47314, + [SMALL_STATE(546)] = 47420, + [SMALL_STATE(547)] = 47475, + [SMALL_STATE(548)] = 47530, + [SMALL_STATE(549)] = 47585, + [SMALL_STATE(550)] = 47640, + [SMALL_STATE(551)] = 47693, + [SMALL_STATE(552)] = 47746, + [SMALL_STATE(553)] = 47799, + [SMALL_STATE(554)] = 47852, + [SMALL_STATE(555)] = 47905, + [SMALL_STATE(556)] = 47960, + [SMALL_STATE(557)] = 48014, + [SMALL_STATE(558)] = 48064, + [SMALL_STATE(559)] = 48114, + [SMALL_STATE(560)] = 48168, + [SMALL_STATE(561)] = 48218, + [SMALL_STATE(562)] = 48268, + [SMALL_STATE(563)] = 48322, + [SMALL_STATE(564)] = 48376, + [SMALL_STATE(565)] = 48426, + [SMALL_STATE(566)] = 48476, + [SMALL_STATE(567)] = 48526, + [SMALL_STATE(568)] = 48576, + [SMALL_STATE(569)] = 48626, + [SMALL_STATE(570)] = 48680, + [SMALL_STATE(571)] = 48730, + [SMALL_STATE(572)] = 48780, + [SMALL_STATE(573)] = 48830, + [SMALL_STATE(574)] = 48880, + [SMALL_STATE(575)] = 48930, + [SMALL_STATE(576)] = 48980, + [SMALL_STATE(577)] = 49030, + [SMALL_STATE(578)] = 49080, + [SMALL_STATE(579)] = 49129, + [SMALL_STATE(580)] = 49178, + [SMALL_STATE(581)] = 49227, + [SMALL_STATE(582)] = 49276, + [SMALL_STATE(583)] = 49325, + [SMALL_STATE(584)] = 49374, + [SMALL_STATE(585)] = 49425, + [SMALL_STATE(586)] = 49476, + [SMALL_STATE(587)] = 49525, + [SMALL_STATE(588)] = 49574, + [SMALL_STATE(589)] = 49625, + [SMALL_STATE(590)] = 49673, + [SMALL_STATE(591)] = 49729, + [SMALL_STATE(592)] = 49795, + [SMALL_STATE(593)] = 49843, + [SMALL_STATE(594)] = 49891, + [SMALL_STATE(595)] = 49939, + [SMALL_STATE(596)] = 49987, + [SMALL_STATE(597)] = 50035, + [SMALL_STATE(598)] = 50083, + [SMALL_STATE(599)] = 50131, + [SMALL_STATE(600)] = 50179, + [SMALL_STATE(601)] = 50227, + [SMALL_STATE(602)] = 50295, + [SMALL_STATE(603)] = 50359, + [SMALL_STATE(604)] = 50407, + [SMALL_STATE(605)] = 50455, + [SMALL_STATE(606)] = 50503, + [SMALL_STATE(607)] = 50551, + [SMALL_STATE(608)] = 50599, + [SMALL_STATE(609)] = 50661, + [SMALL_STATE(610)] = 50719, + [SMALL_STATE(611)] = 50767, + [SMALL_STATE(612)] = 50815, + [SMALL_STATE(613)] = 50863, + [SMALL_STATE(614)] = 50911, + [SMALL_STATE(615)] = 50959, + [SMALL_STATE(616)] = 51007, + [SMALL_STATE(617)] = 51055, + [SMALL_STATE(618)] = 51103, + [SMALL_STATE(619)] = 51151, + [SMALL_STATE(620)] = 51199, + [SMALL_STATE(621)] = 51267, + [SMALL_STATE(622)] = 51315, + [SMALL_STATE(623)] = 51367, + [SMALL_STATE(624)] = 51415, + [SMALL_STATE(625)] = 51463, + [SMALL_STATE(626)] = 51511, + [SMALL_STATE(627)] = 51559, + [SMALL_STATE(628)] = 51607, + [SMALL_STATE(629)] = 51655, + [SMALL_STATE(630)] = 51723, + [SMALL_STATE(631)] = 51771, + [SMALL_STATE(632)] = 51819, + [SMALL_STATE(633)] = 51867, + [SMALL_STATE(634)] = 51915, + [SMALL_STATE(635)] = 51963, + [SMALL_STATE(636)] = 52031, + [SMALL_STATE(637)] = 52079, + [SMALL_STATE(638)] = 52147, + [SMALL_STATE(639)] = 52198, + [SMALL_STATE(640)] = 52249, + [SMALL_STATE(641)] = 52300, + [SMALL_STATE(642)] = 52350, + [SMALL_STATE(643)] = 52400, + [SMALL_STATE(644)] = 52446, + [SMALL_STATE(645)] = 52495, + [SMALL_STATE(646)] = 52540, + [SMALL_STATE(647)] = 52585, + [SMALL_STATE(648)] = 52630, + [SMALL_STATE(649)] = 52675, + [SMALL_STATE(650)] = 52724, + [SMALL_STATE(651)] = 52769, + [SMALL_STATE(652)] = 52818, + [SMALL_STATE(653)] = 52867, + [SMALL_STATE(654)] = 52912, + [SMALL_STATE(655)] = 52961, + [SMALL_STATE(656)] = 53012, + [SMALL_STATE(657)] = 53057, + [SMALL_STATE(658)] = 53106, + [SMALL_STATE(659)] = 53151, + [SMALL_STATE(660)] = 53196, + [SMALL_STATE(661)] = 53247, + [SMALL_STATE(662)] = 53292, + [SMALL_STATE(663)] = 53337, + [SMALL_STATE(664)] = 53382, + [SMALL_STATE(665)] = 53430, + [SMALL_STATE(666)] = 53476, + [SMALL_STATE(667)] = 53520, + [SMALL_STATE(668)] = 53564, + [SMALL_STATE(669)] = 53608, + [SMALL_STATE(670)] = 53656, + [SMALL_STATE(671)] = 53740, + [SMALL_STATE(672)] = 53824, + [SMALL_STATE(673)] = 53868, + [SMALL_STATE(674)] = 53952, + [SMALL_STATE(675)] = 54036, + [SMALL_STATE(676)] = 54084, + [SMALL_STATE(677)] = 54132, + [SMALL_STATE(678)] = 54178, + [SMALL_STATE(679)] = 54262, + [SMALL_STATE(680)] = 54308, + [SMALL_STATE(681)] = 54356, + [SMALL_STATE(682)] = 54402, + [SMALL_STATE(683)] = 54446, + [SMALL_STATE(684)] = 54530, + [SMALL_STATE(685)] = 54574, + [SMALL_STATE(686)] = 54620, + [SMALL_STATE(687)] = 54666, + [SMALL_STATE(688)] = 54710, + [SMALL_STATE(689)] = 54756, + [SMALL_STATE(690)] = 54800, + [SMALL_STATE(691)] = 54884, + [SMALL_STATE(692)] = 54932, + [SMALL_STATE(693)] = 54976, + [SMALL_STATE(694)] = 55020, + [SMALL_STATE(695)] = 55064, + [SMALL_STATE(696)] = 55108, + [SMALL_STATE(697)] = 55152, + [SMALL_STATE(698)] = 55196, + [SMALL_STATE(699)] = 55240, + [SMALL_STATE(700)] = 55284, + [SMALL_STATE(701)] = 55328, + [SMALL_STATE(702)] = 55372, + [SMALL_STATE(703)] = 55416, + [SMALL_STATE(704)] = 55460, + [SMALL_STATE(705)] = 55504, + [SMALL_STATE(706)] = 55547, + [SMALL_STATE(707)] = 55590, + [SMALL_STATE(708)] = 55633, + [SMALL_STATE(709)] = 55676, + [SMALL_STATE(710)] = 55719, + [SMALL_STATE(711)] = 55762, + [SMALL_STATE(712)] = 55805, + [SMALL_STATE(713)] = 55848, + [SMALL_STATE(714)] = 55891, + [SMALL_STATE(715)] = 55934, + [SMALL_STATE(716)] = 55977, + [SMALL_STATE(717)] = 56020, + [SMALL_STATE(718)] = 56063, + [SMALL_STATE(719)] = 56106, + [SMALL_STATE(720)] = 56149, + [SMALL_STATE(721)] = 56192, + [SMALL_STATE(722)] = 56235, + [SMALL_STATE(723)] = 56278, + [SMALL_STATE(724)] = 56321, + [SMALL_STATE(725)] = 56364, + [SMALL_STATE(726)] = 56407, + [SMALL_STATE(727)] = 56488, + [SMALL_STATE(728)] = 56531, + [SMALL_STATE(729)] = 56574, + [SMALL_STATE(730)] = 56617, + [SMALL_STATE(731)] = 56660, + [SMALL_STATE(732)] = 56703, + [SMALL_STATE(733)] = 56746, + [SMALL_STATE(734)] = 56789, + [SMALL_STATE(735)] = 56832, + [SMALL_STATE(736)] = 56875, + [SMALL_STATE(737)] = 56918, + [SMALL_STATE(738)] = 56975, + [SMALL_STATE(739)] = 57018, + [SMALL_STATE(740)] = 57061, + [SMALL_STATE(741)] = 57104, + [SMALL_STATE(742)] = 57147, + [SMALL_STATE(743)] = 57190, + [SMALL_STATE(744)] = 57233, + [SMALL_STATE(745)] = 57276, + [SMALL_STATE(746)] = 57319, + [SMALL_STATE(747)] = 57362, + [SMALL_STATE(748)] = 57405, + [SMALL_STATE(749)] = 57448, + [SMALL_STATE(750)] = 57491, + [SMALL_STATE(751)] = 57534, + [SMALL_STATE(752)] = 57577, + [SMALL_STATE(753)] = 57620, + [SMALL_STATE(754)] = 57663, + [SMALL_STATE(755)] = 57706, + [SMALL_STATE(756)] = 57749, + [SMALL_STATE(757)] = 57792, + [SMALL_STATE(758)] = 57875, + [SMALL_STATE(759)] = 57918, + [SMALL_STATE(760)] = 57975, + [SMALL_STATE(761)] = 58018, + [SMALL_STATE(762)] = 58075, + [SMALL_STATE(763)] = 58118, + [SMALL_STATE(764)] = 58161, + [SMALL_STATE(765)] = 58204, + [SMALL_STATE(766)] = 58247, + [SMALL_STATE(767)] = 58330, + [SMALL_STATE(768)] = 58373, + [SMALL_STATE(769)] = 58416, + [SMALL_STATE(770)] = 58473, + [SMALL_STATE(771)] = 58516, + [SMALL_STATE(772)] = 58559, + [SMALL_STATE(773)] = 58640, + [SMALL_STATE(774)] = 58697, + [SMALL_STATE(775)] = 58780, + [SMALL_STATE(776)] = 58823, + [SMALL_STATE(777)] = 58866, + [SMALL_STATE(778)] = 58909, + [SMALL_STATE(779)] = 58952, + [SMALL_STATE(780)] = 58995, + [SMALL_STATE(781)] = 59038, + [SMALL_STATE(782)] = 59081, + [SMALL_STATE(783)] = 59124, + [SMALL_STATE(784)] = 59167, + [SMALL_STATE(785)] = 59210, + [SMALL_STATE(786)] = 59253, + [SMALL_STATE(787)] = 59296, + [SMALL_STATE(788)] = 59339, + [SMALL_STATE(789)] = 59382, + [SMALL_STATE(790)] = 59425, + [SMALL_STATE(791)] = 59468, + [SMALL_STATE(792)] = 59525, + [SMALL_STATE(793)] = 59568, + [SMALL_STATE(794)] = 59640, + [SMALL_STATE(795)] = 59712, + [SMALL_STATE(796)] = 59754, + [SMALL_STATE(797)] = 59826, + [SMALL_STATE(798)] = 59898, + [SMALL_STATE(799)] = 59970, + [SMALL_STATE(800)] = 60042, + [SMALL_STATE(801)] = 60114, + [SMALL_STATE(802)] = 60170, + [SMALL_STATE(803)] = 60242, + [SMALL_STATE(804)] = 60314, + [SMALL_STATE(805)] = 60364, + [SMALL_STATE(806)] = 60436, + [SMALL_STATE(807)] = 60508, + [SMALL_STATE(808)] = 60560, + [SMALL_STATE(809)] = 60614, + [SMALL_STATE(810)] = 60686, + [SMALL_STATE(811)] = 60746, + [SMALL_STATE(812)] = 60818, + [SMALL_STATE(813)] = 60874, + [SMALL_STATE(814)] = 60930, + [SMALL_STATE(815)] = 60988, + [SMALL_STATE(816)] = 61032, + [SMALL_STATE(817)] = 61104, + [SMALL_STATE(818)] = 61150, + [SMALL_STATE(819)] = 61222, + [SMALL_STATE(820)] = 61278, + [SMALL_STATE(821)] = 61338, + [SMALL_STATE(822)] = 61398, + [SMALL_STATE(823)] = 61451, + [SMALL_STATE(824)] = 61524, + [SMALL_STATE(825)] = 61601, + [SMALL_STATE(826)] = 61678, + [SMALL_STATE(827)] = 61753, + [SMALL_STATE(828)] = 61806, + [SMALL_STATE(829)] = 61883, + [SMALL_STATE(830)] = 61958, + [SMALL_STATE(831)] = 62035, + [SMALL_STATE(832)] = 62112, + [SMALL_STATE(833)] = 62189, + [SMALL_STATE(834)] = 62266, + [SMALL_STATE(835)] = 62319, + [SMALL_STATE(836)] = 62393, + [SMALL_STATE(837)] = 62467, + [SMALL_STATE(838)] = 62541, + [SMALL_STATE(839)] = 62615, + [SMALL_STATE(840)] = 62689, + [SMALL_STATE(841)] = 62763, + [SMALL_STATE(842)] = 62837, + [SMALL_STATE(843)] = 62911, + [SMALL_STATE(844)] = 62974, + [SMALL_STATE(845)] = 63037, + [SMALL_STATE(846)] = 63100, + [SMALL_STATE(847)] = 63163, + [SMALL_STATE(848)] = 63234, + [SMALL_STATE(849)] = 63291, + [SMALL_STATE(850)] = 63362, + [SMALL_STATE(851)] = 63433, + [SMALL_STATE(852)] = 63476, + [SMALL_STATE(853)] = 63519, + [SMALL_STATE(854)] = 63582, + [SMALL_STATE(855)] = 63645, + [SMALL_STATE(856)] = 63716, + [SMALL_STATE(857)] = 63759, + [SMALL_STATE(858)] = 63830, + [SMALL_STATE(859)] = 63901, + [SMALL_STATE(860)] = 63972, + [SMALL_STATE(861)] = 64035, + [SMALL_STATE(862)] = 64106, + [SMALL_STATE(863)] = 64148, + [SMALL_STATE(864)] = 64214, + [SMALL_STATE(865)] = 64280, + [SMALL_STATE(866)] = 64340, + [SMALL_STATE(867)] = 64406, + [SMALL_STATE(868)] = 64448, + [SMALL_STATE(869)] = 64490, + [SMALL_STATE(870)] = 64528, + [SMALL_STATE(871)] = 64566, + [SMALL_STATE(872)] = 64604, + [SMALL_STATE(873)] = 64664, + [SMALL_STATE(874)] = 64706, + [SMALL_STATE(875)] = 64772, + [SMALL_STATE(876)] = 64810, + [SMALL_STATE(877)] = 64848, + [SMALL_STATE(878)] = 64886, + [SMALL_STATE(879)] = 64946, + [SMALL_STATE(880)] = 65006, + [SMALL_STATE(881)] = 65072, + [SMALL_STATE(882)] = 65132, + [SMALL_STATE(883)] = 65198, + [SMALL_STATE(884)] = 65236, + [SMALL_STATE(885)] = 65302, + [SMALL_STATE(886)] = 65368, + [SMALL_STATE(887)] = 65436, + [SMALL_STATE(888)] = 65474, + [SMALL_STATE(889)] = 65540, + [SMALL_STATE(890)] = 65578, + [SMALL_STATE(891)] = 65616, + [SMALL_STATE(892)] = 65654, + [SMALL_STATE(893)] = 65720, + [SMALL_STATE(894)] = 65786, + [SMALL_STATE(895)] = 65824, + [SMALL_STATE(896)] = 65862, + [SMALL_STATE(897)] = 65900, + [SMALL_STATE(898)] = 65968, + [SMALL_STATE(899)] = 66034, + [SMALL_STATE(900)] = 66094, + [SMALL_STATE(901)] = 66154, + [SMALL_STATE(902)] = 66214, + [SMALL_STATE(903)] = 66280, + [SMALL_STATE(904)] = 66318, + [SMALL_STATE(905)] = 66356, + [SMALL_STATE(906)] = 66393, + [SMALL_STATE(907)] = 66456, + [SMALL_STATE(908)] = 66521, + [SMALL_STATE(909)] = 66582, + [SMALL_STATE(910)] = 66645, + [SMALL_STATE(911)] = 66690, + [SMALL_STATE(912)] = 66727, + [SMALL_STATE(913)] = 66768, + [SMALL_STATE(914)] = 66823, + [SMALL_STATE(915)] = 66860, + [SMALL_STATE(916)] = 66915, + [SMALL_STATE(917)] = 66978, + [SMALL_STATE(918)] = 67041, + [SMALL_STATE(919)] = 67104, + [SMALL_STATE(920)] = 67159, + [SMALL_STATE(921)] = 67196, + [SMALL_STATE(922)] = 67259, + [SMALL_STATE(923)] = 67322, + [SMALL_STATE(924)] = 67377, + [SMALL_STATE(925)] = 67442, + [SMALL_STATE(926)] = 67505, + [SMALL_STATE(927)] = 67568, + [SMALL_STATE(928)] = 67623, + [SMALL_STATE(929)] = 67660, + [SMALL_STATE(930)] = 67723, + [SMALL_STATE(931)] = 67788, + [SMALL_STATE(932)] = 67827, + [SMALL_STATE(933)] = 67890, + [SMALL_STATE(934)] = 67929, + [SMALL_STATE(935)] = 67992, + [SMALL_STATE(936)] = 68031, + [SMALL_STATE(937)] = 68078, + [SMALL_STATE(938)] = 68127, + [SMALL_STATE(939)] = 68178, + [SMALL_STATE(940)] = 68231, + [SMALL_STATE(941)] = 68268, + [SMALL_STATE(942)] = 68323, + [SMALL_STATE(943)] = 68360, + [SMALL_STATE(944)] = 68397, + [SMALL_STATE(945)] = 68452, + [SMALL_STATE(946)] = 68515, + [SMALL_STATE(947)] = 68575, + [SMALL_STATE(948)] = 68629, + [SMALL_STATE(949)] = 68689, + [SMALL_STATE(950)] = 68749, + [SMALL_STATE(951)] = 68803, + [SMALL_STATE(952)] = 68863, + [SMALL_STATE(953)] = 68899, + [SMALL_STATE(954)] = 68935, + [SMALL_STATE(955)] = 68989, + [SMALL_STATE(956)] = 69049, + [SMALL_STATE(957)] = 69085, + [SMALL_STATE(958)] = 69121, + [SMALL_STATE(959)] = 69161, + [SMALL_STATE(960)] = 69213, + [SMALL_STATE(961)] = 69249, + [SMALL_STATE(962)] = 69303, + [SMALL_STATE(963)] = 69339, + [SMALL_STATE(964)] = 69375, + [SMALL_STATE(965)] = 69411, + [SMALL_STATE(966)] = 69447, + [SMALL_STATE(967)] = 69497, + [SMALL_STATE(968)] = 69551, + [SMALL_STATE(969)] = 69599, + [SMALL_STATE(970)] = 69645, + [SMALL_STATE(971)] = 69699, + [SMALL_STATE(972)] = 69743, + [SMALL_STATE(973)] = 69779, + [SMALL_STATE(974)] = 69839, + [SMALL_STATE(975)] = 69899, + [SMALL_STATE(976)] = 69953, + [SMALL_STATE(977)] = 70013, + [SMALL_STATE(978)] = 70073, + [SMALL_STATE(979)] = 70127, + [SMALL_STATE(980)] = 70167, + [SMALL_STATE(981)] = 70227, + [SMALL_STATE(982)] = 70281, + [SMALL_STATE(983)] = 70341, + [SMALL_STATE(984)] = 70401, + [SMALL_STATE(985)] = 70437, + [SMALL_STATE(986)] = 70491, + [SMALL_STATE(987)] = 70551, + [SMALL_STATE(988)] = 70611, + [SMALL_STATE(989)] = 70647, + [SMALL_STATE(990)] = 70707, + [SMALL_STATE(991)] = 70767, + [SMALL_STATE(992)] = 70821, + [SMALL_STATE(993)] = 70875, + [SMALL_STATE(994)] = 70929, + [SMALL_STATE(995)] = 70965, + [SMALL_STATE(996)] = 71019, + [SMALL_STATE(997)] = 71073, + [SMALL_STATE(998)] = 71127, + [SMALL_STATE(999)] = 71181, + [SMALL_STATE(1000)] = 71217, + [SMALL_STATE(1001)] = 71271, + [SMALL_STATE(1002)] = 71325, + [SMALL_STATE(1003)] = 71379, + [SMALL_STATE(1004)] = 71433, + [SMALL_STATE(1005)] = 71469, + [SMALL_STATE(1006)] = 71529, + [SMALL_STATE(1007)] = 71583, + [SMALL_STATE(1008)] = 71637, + [SMALL_STATE(1009)] = 71691, + [SMALL_STATE(1010)] = 71745, + [SMALL_STATE(1011)] = 71799, + [SMALL_STATE(1012)] = 71835, + [SMALL_STATE(1013)] = 71895, + [SMALL_STATE(1014)] = 71955, + [SMALL_STATE(1015)] = 71991, + [SMALL_STATE(1016)] = 72029, + [SMALL_STATE(1017)] = 72083, + [SMALL_STATE(1018)] = 72137, + [SMALL_STATE(1019)] = 72191, + [SMALL_STATE(1020)] = 72245, + [SMALL_STATE(1021)] = 72281, + [SMALL_STATE(1022)] = 72317, + [SMALL_STATE(1023)] = 72371, + [SMALL_STATE(1024)] = 72407, + [SMALL_STATE(1025)] = 72461, + [SMALL_STATE(1026)] = 72518, + [SMALL_STATE(1027)] = 72555, + [SMALL_STATE(1028)] = 72612, + [SMALL_STATE(1029)] = 72669, + [SMALL_STATE(1030)] = 72726, + [SMALL_STATE(1031)] = 72763, + [SMALL_STATE(1032)] = 72798, + [SMALL_STATE(1033)] = 72855, + [SMALL_STATE(1034)] = 72912, + [SMALL_STATE(1035)] = 72969, + [SMALL_STATE(1036)] = 73026, + [SMALL_STATE(1037)] = 73083, + [SMALL_STATE(1038)] = 73140, + [SMALL_STATE(1039)] = 73174, + [SMALL_STATE(1040)] = 73222, + [SMALL_STATE(1041)] = 73256, + [SMALL_STATE(1042)] = 73290, + [SMALL_STATE(1043)] = 73332, + [SMALL_STATE(1044)] = 73382, + [SMALL_STATE(1045)] = 73416, + [SMALL_STATE(1046)] = 73450, + [SMALL_STATE(1047)] = 73484, + [SMALL_STATE(1048)] = 73518, + [SMALL_STATE(1049)] = 73552, + [SMALL_STATE(1050)] = 73590, + [SMALL_STATE(1051)] = 73636, + [SMALL_STATE(1052)] = 73680, + [SMALL_STATE(1053)] = 73722, + [SMALL_STATE(1054)] = 73756, + [SMALL_STATE(1055)] = 73806, + [SMALL_STATE(1056)] = 73840, + [SMALL_STATE(1057)] = 73874, + [SMALL_STATE(1058)] = 73908, + [SMALL_STATE(1059)] = 73942, + [SMALL_STATE(1060)] = 73976, + [SMALL_STATE(1061)] = 74010, + [SMALL_STATE(1062)] = 74048, + [SMALL_STATE(1063)] = 74082, + [SMALL_STATE(1064)] = 74116, + [SMALL_STATE(1065)] = 74150, + [SMALL_STATE(1066)] = 74184, + [SMALL_STATE(1067)] = 74218, + [SMALL_STATE(1068)] = 74266, + [SMALL_STATE(1069)] = 74312, + [SMALL_STATE(1070)] = 74356, + [SMALL_STATE(1071)] = 74390, + [SMALL_STATE(1072)] = 74424, + [SMALL_STATE(1073)] = 74458, + [SMALL_STATE(1074)] = 74492, + [SMALL_STATE(1075)] = 74526, + [SMALL_STATE(1076)] = 74560, + [SMALL_STATE(1077)] = 74594, + [SMALL_STATE(1078)] = 74626, + [SMALL_STATE(1079)] = 74676, + [SMALL_STATE(1080)] = 74710, + [SMALL_STATE(1081)] = 74744, + [SMALL_STATE(1082)] = 74791, + [SMALL_STATE(1083)] = 74838, + [SMALL_STATE(1084)] = 74885, + [SMALL_STATE(1085)] = 74932, + [SMALL_STATE(1086)] = 74979, + [SMALL_STATE(1087)] = 75026, + [SMALL_STATE(1088)] = 75054, + [SMALL_STATE(1089)] = 75098, + [SMALL_STATE(1090)] = 75142, + [SMALL_STATE(1091)] = 75186, + [SMALL_STATE(1092)] = 75230, + [SMALL_STATE(1093)] = 75274, + [SMALL_STATE(1094)] = 75300, + [SMALL_STATE(1095)] = 75344, + [SMALL_STATE(1096)] = 75388, + [SMALL_STATE(1097)] = 75432, + [SMALL_STATE(1098)] = 75462, + [SMALL_STATE(1099)] = 75506, + [SMALL_STATE(1100)] = 75550, + [SMALL_STATE(1101)] = 75591, + [SMALL_STATE(1102)] = 75632, + [SMALL_STATE(1103)] = 75673, + [SMALL_STATE(1104)] = 75698, + [SMALL_STATE(1105)] = 75739, + [SMALL_STATE(1106)] = 75782, + [SMALL_STATE(1107)] = 75825, + [SMALL_STATE(1108)] = 75866, + [SMALL_STATE(1109)] = 75907, + [SMALL_STATE(1110)] = 75948, + [SMALL_STATE(1111)] = 75991, + [SMALL_STATE(1112)] = 76032, + [SMALL_STATE(1113)] = 76073, + [SMALL_STATE(1114)] = 76102, + [SMALL_STATE(1115)] = 76143, + [SMALL_STATE(1116)] = 76184, + [SMALL_STATE(1117)] = 76222, + [SMALL_STATE(1118)] = 76260, + [SMALL_STATE(1119)] = 76298, + [SMALL_STATE(1120)] = 76336, + [SMALL_STATE(1121)] = 76374, + [SMALL_STATE(1122)] = 76412, + [SMALL_STATE(1123)] = 76450, + [SMALL_STATE(1124)] = 76488, + [SMALL_STATE(1125)] = 76526, + [SMALL_STATE(1126)] = 76566, + [SMALL_STATE(1127)] = 76606, + [SMALL_STATE(1128)] = 76644, + [SMALL_STATE(1129)] = 76684, + [SMALL_STATE(1130)] = 76722, + [SMALL_STATE(1131)] = 76760, + [SMALL_STATE(1132)] = 76784, + [SMALL_STATE(1133)] = 76822, + [SMALL_STATE(1134)] = 76846, + [SMALL_STATE(1135)] = 76884, + [SMALL_STATE(1136)] = 76922, + [SMALL_STATE(1137)] = 76960, + [SMALL_STATE(1138)] = 76998, + [SMALL_STATE(1139)] = 77036, + [SMALL_STATE(1140)] = 77074, + [SMALL_STATE(1141)] = 77098, + [SMALL_STATE(1142)] = 77136, + [SMALL_STATE(1143)] = 77174, + [SMALL_STATE(1144)] = 77212, + [SMALL_STATE(1145)] = 77236, + [SMALL_STATE(1146)] = 77274, + [SMALL_STATE(1147)] = 77298, + [SMALL_STATE(1148)] = 77338, + [SMALL_STATE(1149)] = 77378, + [SMALL_STATE(1150)] = 77416, + [SMALL_STATE(1151)] = 77454, + [SMALL_STATE(1152)] = 77478, + [SMALL_STATE(1153)] = 77516, + [SMALL_STATE(1154)] = 77540, + [SMALL_STATE(1155)] = 77564, + [SMALL_STATE(1156)] = 77602, + [SMALL_STATE(1157)] = 77642, + [SMALL_STATE(1158)] = 77666, + [SMALL_STATE(1159)] = 77704, + [SMALL_STATE(1160)] = 77728, + [SMALL_STATE(1161)] = 77752, + [SMALL_STATE(1162)] = 77790, + [SMALL_STATE(1163)] = 77830, + [SMALL_STATE(1164)] = 77854, + [SMALL_STATE(1165)] = 77877, + [SMALL_STATE(1166)] = 77914, + [SMALL_STATE(1167)] = 77937, + [SMALL_STATE(1168)] = 77964, + [SMALL_STATE(1169)] = 77987, + [SMALL_STATE(1170)] = 78010, + [SMALL_STATE(1171)] = 78037, + [SMALL_STATE(1172)] = 78060, + [SMALL_STATE(1173)] = 78083, + [SMALL_STATE(1174)] = 78120, + [SMALL_STATE(1175)] = 78143, + [SMALL_STATE(1176)] = 78170, + [SMALL_STATE(1177)] = 78193, + [SMALL_STATE(1178)] = 78230, + [SMALL_STATE(1179)] = 78253, + [SMALL_STATE(1180)] = 78276, + [SMALL_STATE(1181)] = 78299, + [SMALL_STATE(1182)] = 78322, + [SMALL_STATE(1183)] = 78345, + [SMALL_STATE(1184)] = 78368, + [SMALL_STATE(1185)] = 78391, + [SMALL_STATE(1186)] = 78428, + [SMALL_STATE(1187)] = 78451, + [SMALL_STATE(1188)] = 78474, + [SMALL_STATE(1189)] = 78497, + [SMALL_STATE(1190)] = 78520, + [SMALL_STATE(1191)] = 78543, + [SMALL_STATE(1192)] = 78566, + [SMALL_STATE(1193)] = 78589, + [SMALL_STATE(1194)] = 78612, + [SMALL_STATE(1195)] = 78635, + [SMALL_STATE(1196)] = 78662, + [SMALL_STATE(1197)] = 78685, + [SMALL_STATE(1198)] = 78708, + [SMALL_STATE(1199)] = 78731, + [SMALL_STATE(1200)] = 78754, + [SMALL_STATE(1201)] = 78782, + [SMALL_STATE(1202)] = 78808, + [SMALL_STATE(1203)] = 78836, + [SMALL_STATE(1204)] = 78860, + [SMALL_STATE(1205)] = 78885, + [SMALL_STATE(1206)] = 78926, + [SMALL_STATE(1207)] = 78951, + [SMALL_STATE(1208)] = 78972, + [SMALL_STATE(1209)] = 79013, + [SMALL_STATE(1210)] = 79034, + [SMALL_STATE(1211)] = 79055, + [SMALL_STATE(1212)] = 79080, + [SMALL_STATE(1213)] = 79101, + [SMALL_STATE(1214)] = 79122, + [SMALL_STATE(1215)] = 79143, + [SMALL_STATE(1216)] = 79164, + [SMALL_STATE(1217)] = 79189, + [SMALL_STATE(1218)] = 79230, + [SMALL_STATE(1219)] = 79251, + [SMALL_STATE(1220)] = 79272, + [SMALL_STATE(1221)] = 79313, + [SMALL_STATE(1222)] = 79354, + [SMALL_STATE(1223)] = 79379, + [SMALL_STATE(1224)] = 79420, + [SMALL_STATE(1225)] = 79441, + [SMALL_STATE(1226)] = 79461, + [SMALL_STATE(1227)] = 79481, + [SMALL_STATE(1228)] = 79501, + [SMALL_STATE(1229)] = 79521, + [SMALL_STATE(1230)] = 79559, + [SMALL_STATE(1231)] = 79579, + [SMALL_STATE(1232)] = 79599, + [SMALL_STATE(1233)] = 79633, + [SMALL_STATE(1234)] = 79655, + [SMALL_STATE(1235)] = 79677, + [SMALL_STATE(1236)] = 79697, + [SMALL_STATE(1237)] = 79717, + [SMALL_STATE(1238)] = 79751, + [SMALL_STATE(1239)] = 79773, + [SMALL_STATE(1240)] = 79792, + [SMALL_STATE(1241)] = 79811, + [SMALL_STATE(1242)] = 79834, + [SMALL_STATE(1243)] = 79861, + [SMALL_STATE(1244)] = 79880, + [SMALL_STATE(1245)] = 79899, + [SMALL_STATE(1246)] = 79918, + [SMALL_STATE(1247)] = 79937, + [SMALL_STATE(1248)] = 79956, + [SMALL_STATE(1249)] = 79975, + [SMALL_STATE(1250)] = 79994, + [SMALL_STATE(1251)] = 80013, + [SMALL_STATE(1252)] = 80032, + [SMALL_STATE(1253)] = 80051, + [SMALL_STATE(1254)] = 80070, + [SMALL_STATE(1255)] = 80089, + [SMALL_STATE(1256)] = 80108, + [SMALL_STATE(1257)] = 80127, + [SMALL_STATE(1258)] = 80146, + [SMALL_STATE(1259)] = 80165, + [SMALL_STATE(1260)] = 80184, + [SMALL_STATE(1261)] = 80203, + [SMALL_STATE(1262)] = 80222, + [SMALL_STATE(1263)] = 80241, + [SMALL_STATE(1264)] = 80262, + [SMALL_STATE(1265)] = 80281, + [SMALL_STATE(1266)] = 80302, + [SMALL_STATE(1267)] = 80321, + [SMALL_STATE(1268)] = 80353, + [SMALL_STATE(1269)] = 80371, + [SMALL_STATE(1270)] = 80389, + [SMALL_STATE(1271)] = 80421, + [SMALL_STATE(1272)] = 80441, + [SMALL_STATE(1273)] = 80459, + [SMALL_STATE(1274)] = 80491, + [SMALL_STATE(1275)] = 80518, + [SMALL_STATE(1276)] = 80547, + [SMALL_STATE(1277)] = 80576, + [SMALL_STATE(1278)] = 80603, + [SMALL_STATE(1279)] = 80632, + [SMALL_STATE(1280)] = 80659, + [SMALL_STATE(1281)] = 80686, + [SMALL_STATE(1282)] = 80715, + [SMALL_STATE(1283)] = 80742, + [SMALL_STATE(1284)] = 80769, + [SMALL_STATE(1285)] = 80786, + [SMALL_STATE(1286)] = 80815, + [SMALL_STATE(1287)] = 80842, + [SMALL_STATE(1288)] = 80869, + [SMALL_STATE(1289)] = 80898, + [SMALL_STATE(1290)] = 80927, + [SMALL_STATE(1291)] = 80953, + [SMALL_STATE(1292)] = 80975, + [SMALL_STATE(1293)] = 80997, + [SMALL_STATE(1294)] = 81019, + [SMALL_STATE(1295)] = 81041, + [SMALL_STATE(1296)] = 81063, + [SMALL_STATE(1297)] = 81083, + [SMALL_STATE(1298)] = 81107, + [SMALL_STATE(1299)] = 81129, + [SMALL_STATE(1300)] = 81151, + [SMALL_STATE(1301)] = 81173, + [SMALL_STATE(1302)] = 81195, + [SMALL_STATE(1303)] = 81219, + [SMALL_STATE(1304)] = 81241, + [SMALL_STATE(1305)] = 81265, + [SMALL_STATE(1306)] = 81289, + [SMALL_STATE(1307)] = 81313, + [SMALL_STATE(1308)] = 81335, + [SMALL_STATE(1309)] = 81357, + [SMALL_STATE(1310)] = 81381, + [SMALL_STATE(1311)] = 81405, + [SMALL_STATE(1312)] = 81427, + [SMALL_STATE(1313)] = 81449, + [SMALL_STATE(1314)] = 81471, + [SMALL_STATE(1315)] = 81495, + [SMALL_STATE(1316)] = 81519, + [SMALL_STATE(1317)] = 81543, + [SMALL_STATE(1318)] = 81565, + [SMALL_STATE(1319)] = 81587, + [SMALL_STATE(1320)] = 81609, + [SMALL_STATE(1321)] = 81631, + [SMALL_STATE(1322)] = 81653, + [SMALL_STATE(1323)] = 81671, + [SMALL_STATE(1324)] = 81693, + [SMALL_STATE(1325)] = 81715, + [SMALL_STATE(1326)] = 81737, + [SMALL_STATE(1327)] = 81761, + [SMALL_STATE(1328)] = 81785, + [SMALL_STATE(1329)] = 81807, + [SMALL_STATE(1330)] = 81829, + [SMALL_STATE(1331)] = 81851, + [SMALL_STATE(1332)] = 81873, + [SMALL_STATE(1333)] = 81896, + [SMALL_STATE(1334)] = 81915, + [SMALL_STATE(1335)] = 81934, + [SMALL_STATE(1336)] = 81955, + [SMALL_STATE(1337)] = 81974, + [SMALL_STATE(1338)] = 81997, + [SMALL_STATE(1339)] = 82020, + [SMALL_STATE(1340)] = 82039, + [SMALL_STATE(1341)] = 82058, + [SMALL_STATE(1342)] = 82081, + [SMALL_STATE(1343)] = 82100, + [SMALL_STATE(1344)] = 82119, + [SMALL_STATE(1345)] = 82142, + [SMALL_STATE(1346)] = 82161, + [SMALL_STATE(1347)] = 82180, + [SMALL_STATE(1348)] = 82203, + [SMALL_STATE(1349)] = 82222, + [SMALL_STATE(1350)] = 82241, + [SMALL_STATE(1351)] = 82260, + [SMALL_STATE(1352)] = 82276, + [SMALL_STATE(1353)] = 82292, + [SMALL_STATE(1354)] = 82310, + [SMALL_STATE(1355)] = 82330, + [SMALL_STATE(1356)] = 82348, + [SMALL_STATE(1357)] = 82362, + [SMALL_STATE(1358)] = 82382, + [SMALL_STATE(1359)] = 82400, + [SMALL_STATE(1360)] = 82418, + [SMALL_STATE(1361)] = 82436, + [SMALL_STATE(1362)] = 82456, + [SMALL_STATE(1363)] = 82472, + [SMALL_STATE(1364)] = 82492, + [SMALL_STATE(1365)] = 82508, + [SMALL_STATE(1366)] = 82528, + [SMALL_STATE(1367)] = 82546, + [SMALL_STATE(1368)] = 82566, + [SMALL_STATE(1369)] = 82584, + [SMALL_STATE(1370)] = 82602, + [SMALL_STATE(1371)] = 82618, + [SMALL_STATE(1372)] = 82638, + [SMALL_STATE(1373)] = 82658, + [SMALL_STATE(1374)] = 82676, + [SMALL_STATE(1375)] = 82696, + [SMALL_STATE(1376)] = 82714, + [SMALL_STATE(1377)] = 82732, + [SMALL_STATE(1378)] = 82752, + [SMALL_STATE(1379)] = 82772, + [SMALL_STATE(1380)] = 82790, + [SMALL_STATE(1381)] = 82810, + [SMALL_STATE(1382)] = 82828, + [SMALL_STATE(1383)] = 82846, + [SMALL_STATE(1384)] = 82864, + [SMALL_STATE(1385)] = 82882, + [SMALL_STATE(1386)] = 82900, + [SMALL_STATE(1387)] = 82920, + [SMALL_STATE(1388)] = 82940, + [SMALL_STATE(1389)] = 82960, + [SMALL_STATE(1390)] = 82980, + [SMALL_STATE(1391)] = 82998, + [SMALL_STATE(1392)] = 83018, + [SMALL_STATE(1393)] = 83038, + [SMALL_STATE(1394)] = 83054, + [SMALL_STATE(1395)] = 83072, + [SMALL_STATE(1396)] = 83088, + [SMALL_STATE(1397)] = 83106, + [SMALL_STATE(1398)] = 83126, + [SMALL_STATE(1399)] = 83144, + [SMALL_STATE(1400)] = 83164, + [SMALL_STATE(1401)] = 83182, + [SMALL_STATE(1402)] = 83196, + [SMALL_STATE(1403)] = 83214, + [SMALL_STATE(1404)] = 83232, + [SMALL_STATE(1405)] = 83250, + [SMALL_STATE(1406)] = 83268, + [SMALL_STATE(1407)] = 83284, + [SMALL_STATE(1408)] = 83304, + [SMALL_STATE(1409)] = 83321, + [SMALL_STATE(1410)] = 83338, + [SMALL_STATE(1411)] = 83355, + [SMALL_STATE(1412)] = 83372, + [SMALL_STATE(1413)] = 83389, + [SMALL_STATE(1414)] = 83406, + [SMALL_STATE(1415)] = 83423, + [SMALL_STATE(1416)] = 83440, + [SMALL_STATE(1417)] = 83457, + [SMALL_STATE(1418)] = 83470, + [SMALL_STATE(1419)] = 83487, + [SMALL_STATE(1420)] = 83504, + [SMALL_STATE(1421)] = 83517, + [SMALL_STATE(1422)] = 83534, + [SMALL_STATE(1423)] = 83551, + [SMALL_STATE(1424)] = 83568, + [SMALL_STATE(1425)] = 83585, + [SMALL_STATE(1426)] = 83598, + [SMALL_STATE(1427)] = 83615, + [SMALL_STATE(1428)] = 83628, + [SMALL_STATE(1429)] = 83645, + [SMALL_STATE(1430)] = 83662, + [SMALL_STATE(1431)] = 83679, + [SMALL_STATE(1432)] = 83696, + [SMALL_STATE(1433)] = 83709, + [SMALL_STATE(1434)] = 83726, + [SMALL_STATE(1435)] = 83741, + [SMALL_STATE(1436)] = 83758, + [SMALL_STATE(1437)] = 83775, + [SMALL_STATE(1438)] = 83792, + [SMALL_STATE(1439)] = 83809, + [SMALL_STATE(1440)] = 83826, + [SMALL_STATE(1441)] = 83843, + [SMALL_STATE(1442)] = 83860, + [SMALL_STATE(1443)] = 83877, + [SMALL_STATE(1444)] = 83890, + [SMALL_STATE(1445)] = 83907, + [SMALL_STATE(1446)] = 83924, + [SMALL_STATE(1447)] = 83937, + [SMALL_STATE(1448)] = 83954, + [SMALL_STATE(1449)] = 83967, + [SMALL_STATE(1450)] = 83984, + [SMALL_STATE(1451)] = 84001, + [SMALL_STATE(1452)] = 84014, + [SMALL_STATE(1453)] = 84031, + [SMALL_STATE(1454)] = 84048, + [SMALL_STATE(1455)] = 84061, + [SMALL_STATE(1456)] = 84074, + [SMALL_STATE(1457)] = 84091, + [SMALL_STATE(1458)] = 84108, + [SMALL_STATE(1459)] = 84121, + [SMALL_STATE(1460)] = 84138, + [SMALL_STATE(1461)] = 84155, + [SMALL_STATE(1462)] = 84172, + [SMALL_STATE(1463)] = 84189, + [SMALL_STATE(1464)] = 84206, + [SMALL_STATE(1465)] = 84219, + [SMALL_STATE(1466)] = 84236, + [SMALL_STATE(1467)] = 84253, + [SMALL_STATE(1468)] = 84270, + [SMALL_STATE(1469)] = 84287, + [SMALL_STATE(1470)] = 84304, + [SMALL_STATE(1471)] = 84321, + [SMALL_STATE(1472)] = 84336, + [SMALL_STATE(1473)] = 84349, + [SMALL_STATE(1474)] = 84366, + [SMALL_STATE(1475)] = 84383, + [SMALL_STATE(1476)] = 84400, + [SMALL_STATE(1477)] = 84417, + [SMALL_STATE(1478)] = 84434, + [SMALL_STATE(1479)] = 84447, + [SMALL_STATE(1480)] = 84464, + [SMALL_STATE(1481)] = 84477, + [SMALL_STATE(1482)] = 84494, + [SMALL_STATE(1483)] = 84511, + [SMALL_STATE(1484)] = 84528, + [SMALL_STATE(1485)] = 84543, + [SMALL_STATE(1486)] = 84560, + [SMALL_STATE(1487)] = 84577, + [SMALL_STATE(1488)] = 84594, + [SMALL_STATE(1489)] = 84611, + [SMALL_STATE(1490)] = 84628, + [SMALL_STATE(1491)] = 84645, + [SMALL_STATE(1492)] = 84662, + [SMALL_STATE(1493)] = 84679, + [SMALL_STATE(1494)] = 84692, + [SMALL_STATE(1495)] = 84709, + [SMALL_STATE(1496)] = 84726, + [SMALL_STATE(1497)] = 84739, + [SMALL_STATE(1498)] = 84756, + [SMALL_STATE(1499)] = 84773, + [SMALL_STATE(1500)] = 84790, + [SMALL_STATE(1501)] = 84807, + [SMALL_STATE(1502)] = 84824, + [SMALL_STATE(1503)] = 84841, + [SMALL_STATE(1504)] = 84858, + [SMALL_STATE(1505)] = 84875, + [SMALL_STATE(1506)] = 84892, + [SMALL_STATE(1507)] = 84909, + [SMALL_STATE(1508)] = 84926, + [SMALL_STATE(1509)] = 84943, + [SMALL_STATE(1510)] = 84960, + [SMALL_STATE(1511)] = 84977, + [SMALL_STATE(1512)] = 84994, + [SMALL_STATE(1513)] = 85011, + [SMALL_STATE(1514)] = 85028, + [SMALL_STATE(1515)] = 85041, + [SMALL_STATE(1516)] = 85056, + [SMALL_STATE(1517)] = 85073, + [SMALL_STATE(1518)] = 85090, + [SMALL_STATE(1519)] = 85107, + [SMALL_STATE(1520)] = 85124, + [SMALL_STATE(1521)] = 85137, + [SMALL_STATE(1522)] = 85154, + [SMALL_STATE(1523)] = 85171, + [SMALL_STATE(1524)] = 85188, + [SMALL_STATE(1525)] = 85205, + [SMALL_STATE(1526)] = 85222, + [SMALL_STATE(1527)] = 85239, + [SMALL_STATE(1528)] = 85256, + [SMALL_STATE(1529)] = 85273, + [SMALL_STATE(1530)] = 85286, + [SMALL_STATE(1531)] = 85303, + [SMALL_STATE(1532)] = 85320, + [SMALL_STATE(1533)] = 85337, + [SMALL_STATE(1534)] = 85354, + [SMALL_STATE(1535)] = 85367, + [SMALL_STATE(1536)] = 85380, + [SMALL_STATE(1537)] = 85397, + [SMALL_STATE(1538)] = 85414, + [SMALL_STATE(1539)] = 85427, + [SMALL_STATE(1540)] = 85444, + [SMALL_STATE(1541)] = 85461, + [SMALL_STATE(1542)] = 85478, + [SMALL_STATE(1543)] = 85495, + [SMALL_STATE(1544)] = 85512, + [SMALL_STATE(1545)] = 85529, + [SMALL_STATE(1546)] = 85546, + [SMALL_STATE(1547)] = 85563, + [SMALL_STATE(1548)] = 85576, + [SMALL_STATE(1549)] = 85593, + [SMALL_STATE(1550)] = 85606, + [SMALL_STATE(1551)] = 85623, + [SMALL_STATE(1552)] = 85640, + [SMALL_STATE(1553)] = 85653, + [SMALL_STATE(1554)] = 85670, + [SMALL_STATE(1555)] = 85687, + [SMALL_STATE(1556)] = 85704, + [SMALL_STATE(1557)] = 85721, + [SMALL_STATE(1558)] = 85738, + [SMALL_STATE(1559)] = 85755, + [SMALL_STATE(1560)] = 85772, + [SMALL_STATE(1561)] = 85789, + [SMALL_STATE(1562)] = 85802, + [SMALL_STATE(1563)] = 85815, + [SMALL_STATE(1564)] = 85832, + [SMALL_STATE(1565)] = 85849, + [SMALL_STATE(1566)] = 85866, + [SMALL_STATE(1567)] = 85883, + [SMALL_STATE(1568)] = 85900, + [SMALL_STATE(1569)] = 85917, + [SMALL_STATE(1570)] = 85934, + [SMALL_STATE(1571)] = 85951, + [SMALL_STATE(1572)] = 85968, + [SMALL_STATE(1573)] = 85985, + [SMALL_STATE(1574)] = 86002, + [SMALL_STATE(1575)] = 86017, + [SMALL_STATE(1576)] = 86034, + [SMALL_STATE(1577)] = 86051, + [SMALL_STATE(1578)] = 86068, + [SMALL_STATE(1579)] = 86085, + [SMALL_STATE(1580)] = 86098, + [SMALL_STATE(1581)] = 86111, + [SMALL_STATE(1582)] = 86128, + [SMALL_STATE(1583)] = 86145, + [SMALL_STATE(1584)] = 86162, + [SMALL_STATE(1585)] = 86179, + [SMALL_STATE(1586)] = 86196, + [SMALL_STATE(1587)] = 86213, + [SMALL_STATE(1588)] = 86230, + [SMALL_STATE(1589)] = 86245, + [SMALL_STATE(1590)] = 86260, + [SMALL_STATE(1591)] = 86277, + [SMALL_STATE(1592)] = 86294, + [SMALL_STATE(1593)] = 86311, + [SMALL_STATE(1594)] = 86328, + [SMALL_STATE(1595)] = 86345, + [SMALL_STATE(1596)] = 86358, + [SMALL_STATE(1597)] = 86371, + [SMALL_STATE(1598)] = 86388, + [SMALL_STATE(1599)] = 86405, + [SMALL_STATE(1600)] = 86422, + [SMALL_STATE(1601)] = 86439, + [SMALL_STATE(1602)] = 86456, + [SMALL_STATE(1603)] = 86469, + [SMALL_STATE(1604)] = 86486, + [SMALL_STATE(1605)] = 86498, + [SMALL_STATE(1606)] = 86512, + [SMALL_STATE(1607)] = 86524, + [SMALL_STATE(1608)] = 86538, + [SMALL_STATE(1609)] = 86552, + [SMALL_STATE(1610)] = 86566, + [SMALL_STATE(1611)] = 86578, + [SMALL_STATE(1612)] = 86590, + [SMALL_STATE(1613)] = 86604, + [SMALL_STATE(1614)] = 86618, + [SMALL_STATE(1615)] = 86632, + [SMALL_STATE(1616)] = 86646, + [SMALL_STATE(1617)] = 86660, + [SMALL_STATE(1618)] = 86674, + [SMALL_STATE(1619)] = 86688, + [SMALL_STATE(1620)] = 86700, + [SMALL_STATE(1621)] = 86714, + [SMALL_STATE(1622)] = 86728, + [SMALL_STATE(1623)] = 86740, + [SMALL_STATE(1624)] = 86754, + [SMALL_STATE(1625)] = 86768, + [SMALL_STATE(1626)] = 86782, + [SMALL_STATE(1627)] = 86796, + [SMALL_STATE(1628)] = 86808, + [SMALL_STATE(1629)] = 86820, + [SMALL_STATE(1630)] = 86834, + [SMALL_STATE(1631)] = 86846, + [SMALL_STATE(1632)] = 86858, + [SMALL_STATE(1633)] = 86872, + [SMALL_STATE(1634)] = 86884, + [SMALL_STATE(1635)] = 86898, + [SMALL_STATE(1636)] = 86912, + [SMALL_STATE(1637)] = 86924, + [SMALL_STATE(1638)] = 86936, + [SMALL_STATE(1639)] = 86950, + [SMALL_STATE(1640)] = 86962, + [SMALL_STATE(1641)] = 86976, + [SMALL_STATE(1642)] = 86988, + [SMALL_STATE(1643)] = 87000, + [SMALL_STATE(1644)] = 87014, + [SMALL_STATE(1645)] = 87028, + [SMALL_STATE(1646)] = 87042, + [SMALL_STATE(1647)] = 87056, + [SMALL_STATE(1648)] = 87070, + [SMALL_STATE(1649)] = 87082, + [SMALL_STATE(1650)] = 87096, + [SMALL_STATE(1651)] = 87110, + [SMALL_STATE(1652)] = 87122, + [SMALL_STATE(1653)] = 87136, + [SMALL_STATE(1654)] = 87150, + [SMALL_STATE(1655)] = 87164, + [SMALL_STATE(1656)] = 87178, + [SMALL_STATE(1657)] = 87192, + [SMALL_STATE(1658)] = 87206, + [SMALL_STATE(1659)] = 87220, + [SMALL_STATE(1660)] = 87234, + [SMALL_STATE(1661)] = 87248, + [SMALL_STATE(1662)] = 87262, + [SMALL_STATE(1663)] = 87276, + [SMALL_STATE(1664)] = 87290, + [SMALL_STATE(1665)] = 87304, + [SMALL_STATE(1666)] = 87318, + [SMALL_STATE(1667)] = 87330, + [SMALL_STATE(1668)] = 87344, + [SMALL_STATE(1669)] = 87356, + [SMALL_STATE(1670)] = 87370, + [SMALL_STATE(1671)] = 87382, + [SMALL_STATE(1672)] = 87396, + [SMALL_STATE(1673)] = 87408, + [SMALL_STATE(1674)] = 87420, + [SMALL_STATE(1675)] = 87434, + [SMALL_STATE(1676)] = 87448, + [SMALL_STATE(1677)] = 87462, + [SMALL_STATE(1678)] = 87476, + [SMALL_STATE(1679)] = 87490, + [SMALL_STATE(1680)] = 87504, + [SMALL_STATE(1681)] = 87518, + [SMALL_STATE(1682)] = 87530, + [SMALL_STATE(1683)] = 87544, + [SMALL_STATE(1684)] = 87558, + [SMALL_STATE(1685)] = 87570, + [SMALL_STATE(1686)] = 87584, + [SMALL_STATE(1687)] = 87598, + [SMALL_STATE(1688)] = 87612, + [SMALL_STATE(1689)] = 87626, + [SMALL_STATE(1690)] = 87638, + [SMALL_STATE(1691)] = 87652, + [SMALL_STATE(1692)] = 87666, + [SMALL_STATE(1693)] = 87680, + [SMALL_STATE(1694)] = 87694, + [SMALL_STATE(1695)] = 87706, + [SMALL_STATE(1696)] = 87720, + [SMALL_STATE(1697)] = 87734, + [SMALL_STATE(1698)] = 87746, + [SMALL_STATE(1699)] = 87760, + [SMALL_STATE(1700)] = 87774, + [SMALL_STATE(1701)] = 87788, + [SMALL_STATE(1702)] = 87802, + [SMALL_STATE(1703)] = 87814, + [SMALL_STATE(1704)] = 87828, + [SMALL_STATE(1705)] = 87842, + [SMALL_STATE(1706)] = 87856, + [SMALL_STATE(1707)] = 87870, + [SMALL_STATE(1708)] = 87882, + [SMALL_STATE(1709)] = 87894, + [SMALL_STATE(1710)] = 87908, + [SMALL_STATE(1711)] = 87920, + [SMALL_STATE(1712)] = 87932, + [SMALL_STATE(1713)] = 87946, + [SMALL_STATE(1714)] = 87960, + [SMALL_STATE(1715)] = 87974, + [SMALL_STATE(1716)] = 87986, + [SMALL_STATE(1717)] = 88000, + [SMALL_STATE(1718)] = 88014, + [SMALL_STATE(1719)] = 88028, + [SMALL_STATE(1720)] = 88042, + [SMALL_STATE(1721)] = 88056, + [SMALL_STATE(1722)] = 88068, + [SMALL_STATE(1723)] = 88080, + [SMALL_STATE(1724)] = 88094, + [SMALL_STATE(1725)] = 88106, + [SMALL_STATE(1726)] = 88118, + [SMALL_STATE(1727)] = 88132, + [SMALL_STATE(1728)] = 88144, + [SMALL_STATE(1729)] = 88156, + [SMALL_STATE(1730)] = 88168, + [SMALL_STATE(1731)] = 88182, + [SMALL_STATE(1732)] = 88194, + [SMALL_STATE(1733)] = 88208, + [SMALL_STATE(1734)] = 88220, + [SMALL_STATE(1735)] = 88234, + [SMALL_STATE(1736)] = 88248, + [SMALL_STATE(1737)] = 88262, + [SMALL_STATE(1738)] = 88276, + [SMALL_STATE(1739)] = 88288, + [SMALL_STATE(1740)] = 88300, + [SMALL_STATE(1741)] = 88312, + [SMALL_STATE(1742)] = 88326, + [SMALL_STATE(1743)] = 88340, + [SMALL_STATE(1744)] = 88354, + [SMALL_STATE(1745)] = 88366, + [SMALL_STATE(1746)] = 88378, + [SMALL_STATE(1747)] = 88392, + [SMALL_STATE(1748)] = 88406, + [SMALL_STATE(1749)] = 88420, + [SMALL_STATE(1750)] = 88434, + [SMALL_STATE(1751)] = 88448, + [SMALL_STATE(1752)] = 88462, + [SMALL_STATE(1753)] = 88473, + [SMALL_STATE(1754)] = 88484, + [SMALL_STATE(1755)] = 88495, + [SMALL_STATE(1756)] = 88506, + [SMALL_STATE(1757)] = 88517, + [SMALL_STATE(1758)] = 88528, + [SMALL_STATE(1759)] = 88539, + [SMALL_STATE(1760)] = 88550, + [SMALL_STATE(1761)] = 88561, + [SMALL_STATE(1762)] = 88572, + [SMALL_STATE(1763)] = 88583, + [SMALL_STATE(1764)] = 88594, + [SMALL_STATE(1765)] = 88605, + [SMALL_STATE(1766)] = 88616, + [SMALL_STATE(1767)] = 88627, + [SMALL_STATE(1768)] = 88638, + [SMALL_STATE(1769)] = 88649, + [SMALL_STATE(1770)] = 88660, + [SMALL_STATE(1771)] = 88671, + [SMALL_STATE(1772)] = 88682, + [SMALL_STATE(1773)] = 88693, + [SMALL_STATE(1774)] = 88704, + [SMALL_STATE(1775)] = 88715, + [SMALL_STATE(1776)] = 88726, + [SMALL_STATE(1777)] = 88737, + [SMALL_STATE(1778)] = 88748, + [SMALL_STATE(1779)] = 88759, + [SMALL_STATE(1780)] = 88770, + [SMALL_STATE(1781)] = 88781, + [SMALL_STATE(1782)] = 88792, + [SMALL_STATE(1783)] = 88803, + [SMALL_STATE(1784)] = 88814, + [SMALL_STATE(1785)] = 88825, + [SMALL_STATE(1786)] = 88836, + [SMALL_STATE(1787)] = 88847, + [SMALL_STATE(1788)] = 88858, + [SMALL_STATE(1789)] = 88869, + [SMALL_STATE(1790)] = 88880, + [SMALL_STATE(1791)] = 88891, + [SMALL_STATE(1792)] = 88902, + [SMALL_STATE(1793)] = 88913, + [SMALL_STATE(1794)] = 88924, + [SMALL_STATE(1795)] = 88935, + [SMALL_STATE(1796)] = 88946, + [SMALL_STATE(1797)] = 88957, + [SMALL_STATE(1798)] = 88968, + [SMALL_STATE(1799)] = 88979, + [SMALL_STATE(1800)] = 88990, + [SMALL_STATE(1801)] = 89001, + [SMALL_STATE(1802)] = 89012, + [SMALL_STATE(1803)] = 89023, + [SMALL_STATE(1804)] = 89034, + [SMALL_STATE(1805)] = 89045, + [SMALL_STATE(1806)] = 89056, + [SMALL_STATE(1807)] = 89067, + [SMALL_STATE(1808)] = 89078, + [SMALL_STATE(1809)] = 89089, + [SMALL_STATE(1810)] = 89100, + [SMALL_STATE(1811)] = 89111, + [SMALL_STATE(1812)] = 89122, + [SMALL_STATE(1813)] = 89133, + [SMALL_STATE(1814)] = 89144, + [SMALL_STATE(1815)] = 89155, + [SMALL_STATE(1816)] = 89166, + [SMALL_STATE(1817)] = 89177, + [SMALL_STATE(1818)] = 89188, + [SMALL_STATE(1819)] = 89199, + [SMALL_STATE(1820)] = 89210, + [SMALL_STATE(1821)] = 89221, + [SMALL_STATE(1822)] = 89232, + [SMALL_STATE(1823)] = 89243, + [SMALL_STATE(1824)] = 89254, + [SMALL_STATE(1825)] = 89265, + [SMALL_STATE(1826)] = 89276, + [SMALL_STATE(1827)] = 89287, + [SMALL_STATE(1828)] = 89298, + [SMALL_STATE(1829)] = 89309, + [SMALL_STATE(1830)] = 89320, + [SMALL_STATE(1831)] = 89331, + [SMALL_STATE(1832)] = 89342, + [SMALL_STATE(1833)] = 89353, + [SMALL_STATE(1834)] = 89364, + [SMALL_STATE(1835)] = 89375, + [SMALL_STATE(1836)] = 89386, + [SMALL_STATE(1837)] = 89397, + [SMALL_STATE(1838)] = 89408, + [SMALL_STATE(1839)] = 89419, + [SMALL_STATE(1840)] = 89430, + [SMALL_STATE(1841)] = 89441, + [SMALL_STATE(1842)] = 89452, + [SMALL_STATE(1843)] = 89463, + [SMALL_STATE(1844)] = 89474, + [SMALL_STATE(1845)] = 89485, + [SMALL_STATE(1846)] = 89496, + [SMALL_STATE(1847)] = 89507, + [SMALL_STATE(1848)] = 89518, + [SMALL_STATE(1849)] = 89529, + [SMALL_STATE(1850)] = 89540, + [SMALL_STATE(1851)] = 89551, + [SMALL_STATE(1852)] = 89562, + [SMALL_STATE(1853)] = 89573, + [SMALL_STATE(1854)] = 89584, + [SMALL_STATE(1855)] = 89595, + [SMALL_STATE(1856)] = 89606, + [SMALL_STATE(1857)] = 89617, + [SMALL_STATE(1858)] = 89628, + [SMALL_STATE(1859)] = 89639, + [SMALL_STATE(1860)] = 89650, + [SMALL_STATE(1861)] = 89661, + [SMALL_STATE(1862)] = 89672, + [SMALL_STATE(1863)] = 89683, + [SMALL_STATE(1864)] = 89694, + [SMALL_STATE(1865)] = 89705, + [SMALL_STATE(1866)] = 89716, + [SMALL_STATE(1867)] = 89727, + [SMALL_STATE(1868)] = 89738, + [SMALL_STATE(1869)] = 89749, + [SMALL_STATE(1870)] = 89760, + [SMALL_STATE(1871)] = 89771, + [SMALL_STATE(1872)] = 89782, + [SMALL_STATE(1873)] = 89793, + [SMALL_STATE(1874)] = 89804, + [SMALL_STATE(1875)] = 89815, + [SMALL_STATE(1876)] = 89826, + [SMALL_STATE(1877)] = 89837, + [SMALL_STATE(1878)] = 89848, + [SMALL_STATE(1879)] = 89859, + [SMALL_STATE(1880)] = 89870, + [SMALL_STATE(1881)] = 89881, + [SMALL_STATE(1882)] = 89892, + [SMALL_STATE(1883)] = 89903, + [SMALL_STATE(1884)] = 89914, + [SMALL_STATE(1885)] = 89925, + [SMALL_STATE(1886)] = 89936, + [SMALL_STATE(1887)] = 89947, + [SMALL_STATE(1888)] = 89958, + [SMALL_STATE(1889)] = 89969, + [SMALL_STATE(1890)] = 89980, + [SMALL_STATE(1891)] = 89991, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -51720,1432 +82033,2006 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [63] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(124), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1059), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1064), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1283), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(181), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(188), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(870), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(902), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(581), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(45), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(179), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(555), - [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(279), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1242), - [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(899), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), - [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(124), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1283), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(181), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(188), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(870), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1066), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(581), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(45), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(179), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(556), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(555), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(279), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(899), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(106), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(22), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(23), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(24), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(124), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1283), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(181), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(188), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(870), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1066), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(581), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(45), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(179), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(556), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(555), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(279), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(899), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(106), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(22), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(23), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(24), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_group, 3), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_group, 3), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 11), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 11), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 13), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), - [355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 12), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 12), - [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), - [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), - [369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1125), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 40), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 40), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 6), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 6), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 32), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 61), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 61), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, .production_id = 58), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 26), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 26), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 28), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 28), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 45), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 45), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 55), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 55), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 10), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 10), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(125), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1194), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(155), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(239), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(883), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(1108), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(582), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(165), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(180), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(569), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(567), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(277), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(882), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(290), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(86), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(86), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(14), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_seq, 2), SHIFT_REPEAT(88), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 4), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 4), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 4), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 4), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negation, 2), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negation, 2), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 30), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 30), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 5, .production_id = 39), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 5, .production_id = 39), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try, 4, .production_id = 24), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try, 4, .production_id = 24), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 41), - [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 41), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_seq, 1), - [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_seq, 1), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [699] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1137), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(112), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(112), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1124), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 59), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 59), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 52), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 52), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1216), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), - [1079] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1105), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 2), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 2), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 13), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1238), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(510), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(539), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(864), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(863), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(833), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(635), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(635), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(741), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(629), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(628), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 15), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 15), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 16), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 16), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 6), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 6), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 14), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 14), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 46), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 46), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 8, .production_id = 63), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 8, .production_id = 63), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 44), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 44), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 57), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 57), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 7), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 47), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 47), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 14), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 14), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 62), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 62), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 42), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 42), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 60), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 60), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 17), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 17), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 6), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 53), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 53), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 29), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 29), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 9, .production_id = 65), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 9, .production_id = 65), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 64), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 64), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 37), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 27), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 3), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 43), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 43), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1111), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1159), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1155), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(828), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1173), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(853), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1249), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 11), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 10), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 50), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 50), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 51), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1259), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 48), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 22), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 35), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 35), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 6), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 36), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 36), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 22), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 48), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 22), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 36), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 23), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 22), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(238), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), - [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(88), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(572), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 27), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 37), SHIFT_REPEAT(578), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 37), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(433), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(434), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 21), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), - [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(548), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(527), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 8), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 8), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(621), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(890), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(423), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 18), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 25), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(553), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 34), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(753), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(274), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 34), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(577), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 3), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(659), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 3), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 6), - [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(53), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(612), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(715), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 9), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(846), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(643), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(677), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1097), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(661), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(764), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(805), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 49), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(983), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 20), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 38), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 43), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 3), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 33), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 20), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 19), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 43), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 54), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 56), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 6), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 3), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 19), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 31), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2797] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 18), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_echo, 1), + [67] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_echo, 1), + [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1471), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(44), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1315), + [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1883), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(285), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(394), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(544), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1361), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(56), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(63), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(422), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(308), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(841), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(425), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(530), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1347), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1868), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1318), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(134), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(77), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(44), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1883), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(285), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(394), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(544), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1706), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(56), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(63), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(422), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(308), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(841), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(425), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(831), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(530), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1318), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(134), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(77), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(77), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(79), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(80), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(44), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1883), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(285), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(394), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(544), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1706), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(56), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(63), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(422), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(308), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(841), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(425), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(831), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(530), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(1318), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(134), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(77), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(77), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(79), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), SHIFT(80), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 1, .production_id = 1), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 1, .production_id = 1), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_access, 3, .production_id = 22), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_access, 3, .production_id = 22), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 1), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 23), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 23), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 24), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_constructor_name, 3, .production_id = 24), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_name, 1), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_name, 1), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_unit, 1), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_unit, 1), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_function_expression, 1), + [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [468] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1660), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, .production_id = 34), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, .production_id = 34), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 9), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 9), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, .production_id = 50), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, .production_id = 50), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(25), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1761), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(287), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(446), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(535), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1654), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(315), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(323), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(484), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(294), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(842), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(448), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(833), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(529), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(1295), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(515), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(171), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(171), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(112), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_seq, 2), SHIFT_REPEAT(151), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, .production_id = 45), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, .production_id = 45), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 1), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 1), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 6), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 6), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, .production_id = 14), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, .production_id = 14), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 1), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 1), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update, 7, .production_id = 76), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_update, 7, .production_id = 76), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record, 2, .production_id = 10), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record, 2, .production_id = 10), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_record_expression, 1), + [644] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1713), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 7, .production_id = 72), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 7, .production_id = 72), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_negation, 2), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_negation, 2), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 3, .production_id = 16), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 3, .production_id = 16), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 2), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 2), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 4, .production_id = 16), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 4, .production_id = 16), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer_negation, 2), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer_negation, 2), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo, 2), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo, 2), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 21), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 4), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 4), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_todo, 3, .production_id = 16), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_todo, 3, .production_id = 16), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 2, .production_id = 7), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 2, .production_id = 7), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_panic, 4, .production_id = 16), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_panic, 4, .production_id = 16), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 6, .production_id = 62), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 6, .production_id = 62), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 4, .production_id = 56), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 4, .production_id = 56), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 3, .production_id = 37), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 3, .production_id = 37), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 3), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 3), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string, 5), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_bit_string, 5), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_integer, 1), REDUCE(sym_integer, 2), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 5, .production_id = 44), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 5, .production_id = 44), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 3, .production_id = 19), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 3, .production_id = 19), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert, 4, .production_id = 39), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert, 4, .production_id = 39), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 4, .production_id = 40), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 4, .production_id = 40), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 5, .production_id = 55), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 5, .production_id = 55), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 42), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [886] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1644), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 2, .production_id = 42), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [926] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1626), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 2), SHIFT(38), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_case_subjects, 3), SHIFT(38), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 1, .production_id = 1), + [1578] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1723), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_field_access, 3, .production_id = 23), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_field_access, 3, .production_id = 23), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 5), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 5), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 5), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 5), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 4), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 4), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record, 2, .production_id = 10), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record, 2, .production_id = 10), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 3), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 3), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 74), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 74), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 5), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 5), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 4), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 4), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 2), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 2), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 4), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 4), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 6), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 6), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 4), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 4), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 3), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 3), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 3), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 3), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple, 3), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_tuple, 3), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, .production_id = 65), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, .production_id = 65), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_arguments, 5), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_record_arguments, 5), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string, 2), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_bit_string, 2), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_list, 2), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_list, 2), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1757), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 1), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 1, .production_id = 1), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 24), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_type_identifier, 3, .production_id = 24), + [1718] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1676), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, .production_id = 1), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, .production_id = 1), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 2), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, .production_id = 2), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 15), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 15), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_identifier, 1), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_identifier, 1), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, .production_id = 3), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 2, .production_id = 3), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 41), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 41), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_value, 1), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_value, 1), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 4), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 4), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 3), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 3), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 2), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 2), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 2, .production_id = 12), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_name, 2, .production_id = 12), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 48), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 48), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_assert, 3, .production_id = 18), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_assert, 3, .production_id = 18), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_record_expression, 1), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 3), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 3), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__maybe_tuple_expression, 1), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 3), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 3), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 26), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 26), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 5), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 5), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_var, 1), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_var, 1), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 2), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 2), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 69), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 69), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 2), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 2), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 2), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 2), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameters, 5), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameters, 5), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_imports, 4), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unqualified_imports, 4), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 33), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 33), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 3), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 3), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 71), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 71), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 8, .production_id = 78), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 8, .production_id = 78), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 5), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 5), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clauses, 1), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7, .production_id = 75), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7, .production_id = 75), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 3), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 6, .production_id = 68), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 6, .production_id = 68), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 6), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 6), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4, .production_id = 29), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4, .production_id = 29), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 5, .production_id = 25), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 5, .production_id = 25), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, .production_id = 10), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, .production_id = 10), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_hole, 1), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_hole, 1), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_body, 2), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function_body, 2), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function, 9, .production_id = 79), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_function, 9, .production_id = 79), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, .production_id = 27), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 4, .production_id = 27), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 2), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 43), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 43), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 2), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target_group, 4, .production_id = 25), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target_group, 4, .production_id = 25), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 6, .production_id = 60), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 6, .production_id = 60), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 2), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_type, 4), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external_type, 4), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1793), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(825), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(835), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1406), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1293), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1296), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1268), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1268), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1077), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1244), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clauses_repeat1, 2), SHIFT_REPEAT(1243), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 3), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 11), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 11), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 5, .production_id = 57), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 5, .production_id = 57), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discard, 1), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discard, 1), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 58), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 58), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let, 2, .production_id = 5), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let, 2, .production_id = 5), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_arguments, 4), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_arguments, 4), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6, .production_id = 63), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6, .production_id = 63), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 61), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 61), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 3), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 2, .production_id = 42), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 8), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 8), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 3), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 3), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 51), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 3, .production_id = 51), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause_patterns, 2), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 2), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 3), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 2), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2311] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__maybe_tuple_expression, 1), REDUCE(sym__maybe_record_expression, 1), SHIFT(1741), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 1), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 2, .production_id = 42), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 59), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_argument, 3, .production_id = 59), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 4), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constant_value, 1), REDUCE(sym__case_clause_guard_unit, 1), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 21), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_expression, 1, .production_id = 6), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 64), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 1, .production_id = 64), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_binary_expression, 3, .production_id = 21), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_guard_unit, 3), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_guard_unit, 3), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 22), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_clause_tuple_access, 3, .production_id = 22), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_guard, 2), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1720), + [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1717), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1297), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1747), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1665), + [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1674), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1338), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_group_repeat1, 2), SHIFT_REPEAT(1853), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 1, .production_id = 1), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 35), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 66), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, .production_id = 52), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 5), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 4), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 2), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1871), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 5), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 53), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 35), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 35), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 6, .production_id = 53), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 6, .production_id = 66), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 3), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_binary_expression, 3, .production_id = 21), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 2), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 2, .production_id = 10), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string, 4), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 52), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1, .production_id = 6), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 53), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_arguments, 6), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 3, .production_id = 36), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_expression, 1), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), + [2944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(1692), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructors_repeat1, 2), SHIFT_REPEAT(151), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructors, 1), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 35), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1356), + [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1323), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 1, .production_id = 1), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 1), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 1, .production_id = 1), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(388), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), SHIFT_REPEAT(886), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 1, .production_id = 8), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_pattern, 2, .production_id = 51), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_pattern_repeat1, 2, .production_id = 51), SHIFT_REPEAT(897), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), SHIFT_REPEAT(839), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_arguments_repeat1, 2), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause_patterns, 1), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment_options, 1), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 3), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 1, .production_id = 13), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pattern_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(834), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment_options, 1), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(827), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 1, .production_id = 8), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment_options, 1), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 13), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 1, .production_id = 32), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_bit_string_segment_options_repeat1, 2), SHIFT_REPEAT(822), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), SHIFT_REPEAT(1035), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_repeat1, 2), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 2, .production_id = 28), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_patterns_repeat1, 2), SHIFT_REPEAT(857), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 2), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1114), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unqualified_imports_repeat1, 2), SHIFT_REPEAT(1290), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), SHIFT_REPEAT(951), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constant_bit_string_repeat1, 2), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 3), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_update_arguments, 1), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1117), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 3, .production_id = 67), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(349), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 1, .production_id = 4), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), SHIFT_REPEAT(1229), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_parameters_repeat1, 2), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_bit_string_segment_option_size, 4), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 1), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bit_string_segment_option, 4), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 5), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 2), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 3, .production_id = 61), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 3), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1719), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 5), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), SHIFT_REPEAT(521), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_bit_string_repeat1, 2), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 2), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 3, .production_id = 11), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 2, .production_id = 2), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), SHIFT_REPEAT(1089), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_constructor_arguments_repeat1, 2), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignments, 1), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 6), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 4), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), SHIFT_REPEAT(906), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_record_arguments_repeat1, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), SHIFT_REPEAT(916), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_arguments_repeat1, 2), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_tuple_type, 4), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 1, .production_id = 17), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), SHIFT_REPEAT(1177), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_tuple_type_repeat1, 2), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(198), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_arguments, 5), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 4), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern_argument, 1, .production_id = 38), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), SHIFT_REPEAT(849), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pattern_bit_string_repeat1, 2), + [3601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), SHIFT_REPEAT(1450), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_update_arguments_repeat1, 2), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), SHIFT_REPEAT(1126), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_type_arguments_repeat1, 2), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), SHIFT_REPEAT(859), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_assignments_repeat1, 2), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_param, 1, .production_id = 1), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discard_param, 1, .production_id = 1), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_type, 4, .production_id = 71), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_subjects, 2), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_bit_string_segment_option_size, 4), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_arguments, 3), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), SHIFT_REPEAT(1100), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_function_parameters_repeat1, 2), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 1, .production_id = 4), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_discard_param, 2, .production_id = 47), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_name_param, 2, .production_id = 47), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 1, .production_id = 1), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), SHIFT_REPEAT(1276), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_parameters_repeat1, 2), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor, 2, .production_id = 10), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_bit_string_segment_option_size, 4), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type, 2, .production_id = 10), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameter, 2, .production_id = 31), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_assignment, 2, .production_id = 20), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 4), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 3), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 46), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2, .production_id = 31), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hole, 1), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 1, .production_id = 49), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameter, 3, .production_id = 73), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_bit_string_segment, 3, .production_id = 30), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 3, .production_id = 59), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_bit_string_segment, 3, .production_id = 54), + [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 2), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 1), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 1), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_parameters, 5), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_constructor_argument, 1, .production_id = 4), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_type_argument, 1), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_bit_string_segment, 3, .production_id = 30), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument, 1), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_value, 3, .production_id = 59), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 1, .production_id = 4), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_record_argument, 3, .production_id = 59), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 4, .production_id = 77), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unqualified_import, 3, .production_id = 70), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 5), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 2), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 5), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 4), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 2), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern_tail, 2), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_function_parameter_types, 3), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_spread, 2), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 3), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 3), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter_types, 4), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 5), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 1), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_type_annotation, 2, .production_id = 28), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4116] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 2), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external_function_parameters, 4), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), }; #ifdef __cplusplus diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt new file mode 100644 index 000000000..211bef91f --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/attributes.txt @@ -0,0 +1,101 @@ +================================================================================ +Target attribute +================================================================================ + +@target(erlang) +pub fn main() { todo } + +-------------------------------------------------------------------------------- + +(source_file + (attribute + name: (identifier) + arguments: (arguments + (attribute_value + (identifier)))) + (function + (visibility_modifier) + name: (identifier) + parameters: (function_parameters) + body: (block + (todo)))) + +================================================================================ +Attribute with multiple values +================================================================================ + +@deprecated(since: "1.2.0", replacement: wobble) +pub fn wibble() { todo } + +-------------------------------------------------------------------------------- + +(source_file + (attribute + name: (identifier) + arguments: (arguments + (attribute_value + label: (label) + value: (string + (quoted_content))) + (attribute_value + label: (label) + value: (identifier)))) + (function + (visibility_modifier) + name: (identifier) + parameters: (function_parameters) + body: (block + (todo)))) + +================================================================================ +Attribute without arguments +================================================================================ + +@internal +pub fn wibble() { todo } + +-------------------------------------------------------------------------------- + +(source_file + (attribute + name: (identifier)) + (function + (visibility_modifier) + name: (identifier) + parameters: (function_parameters) + body: (block + (todo)))) + +================================================================================ +Individually deprecated constructors +================================================================================ + +pub type SomeType { + NotDeprecated + @deprecated("Please use the NotDeprecated variant") + Deprecated(reason: String) +} + +-------------------------------------------------------------------------------- + +(source_file + (type_definition + (visibility_modifier) + (type_name + name: (type_identifier)) + (data_constructors + (data_constructor + name: (constructor_name)) + (data_constructor + (attribute + name: (identifier) + arguments: (arguments + (attribute_value + (string + (quoted_content))))) + name: (constructor_name) + arguments: (data_constructor_arguments + (data_constructor_argument + label: (label) + value: (type + name: (type_identifier)))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt new file mode 100644 index 000000000..d3424209a --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/cases.txt @@ -0,0 +1,255 @@ +================================================================================ +Case examples +================================================================================ + +case value { + "A" -> True + _ -> False +} + +case value {} + +-------------------------------------------------------------------------------- + +(source_file + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (string + (quoted_content)))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (record + (constructor_name))))) + (case + (case_subjects + (identifier)))) + +================================================================================ +Case examples +================================================================================ + +// From https://gleam.run/news/v0.31-keeping-dependencies-explicit/#quality-of-life-improvements +pub fn listed(names: List(String), person: Person) -> String { + case names { + [name, ..names] if name == person.name -> True + [_, ..names] -> listed(names, person) + [] -> False + } +} + +-------------------------------------------------------------------------------- + +(source_file + (comment) + (function + (visibility_modifier) + (identifier) + (function_parameters + (function_parameter + (identifier) + (type + (type_identifier) + (type_arguments + (type_argument + (type + (type_identifier)))))) + (function_parameter + (identifier) + (type + (type_identifier)))) + (type + (type_identifier)) + (block + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (list_pattern + (identifier) + (list_pattern_tail + (identifier))))) + (case_clause_guard + (binary_expression + (identifier) + (field_access + (identifier) + (label)))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (list_pattern + (discard) + (list_pattern_tail + (identifier))))) + (function_call + (identifier) + (arguments + (argument + (identifier)) + (argument + (identifier))))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (list_pattern))) + (record + (constructor_name)))))))) + +================================================================================ +Pattern matching binaries with 'as' +================================================================================ + +// From https://gleam.run/news/v0.31-keeping-dependencies-explicit/#quality-of-life-improvements +case tag { + "category " as key <> value + | "region " as key <> value + | "priority " as key <> value -> { + let key = string.trim(key) + Ok(Tag(key, value)) + } + _ -> Error(Nil) +} + +-------------------------------------------------------------------------------- + +(source_file + (comment) + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (binary_expression + (binary_expression + (string + (quoted_content)) + (identifier)) + (identifier))) + (case_clause_pattern + (binary_expression + (binary_expression + (string + (quoted_content)) + (identifier)) + (identifier))) + (case_clause_pattern + (binary_expression + (binary_expression + (string + (quoted_content)) + (identifier)) + (identifier)))) + (block + (let + (identifier) + (function_call + (field_access + (identifier) + (label)) + (arguments + (argument + (identifier))))) + (record + (constructor_name) + (arguments + (argument + (record + (constructor_name) + (arguments + (argument + (identifier)) + (argument + (identifier))))))))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (record + (constructor_name) + (arguments + (argument + (record + (constructor_name))))))))) + +================================================================================ +Case with boolean negation in a guard +================================================================================ + +case var { + 1 if !other_var -> True + _ -> False +} + +-------------------------------------------------------------------------------- + +(source_file + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (integer))) + (case_clause_guard + (boolean_negation + (identifier))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (record + (constructor_name)))))) + +================================================================================ +Case with int remainder in guard +================================================================================ + +case var { + _ if 11 % 2 == 0 -> True + _ -> False +} + +-------------------------------------------------------------------------------- + +(source_file + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (case_clause_guard + (binary_expression + (binary_expression + (integer) + (integer)) + (integer))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (record + (constructor_name)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt index 281de6600..1fdde8572 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/constants.txt @@ -26,6 +26,9 @@ const a = Cat("Ginny", 1950) const a = Person(name: "Billy", age: 52) const a = uri.Uri(host: "github.com") const a: option.Option(String) = option.Some("Hello, World!") +const var_alias = b +const int_identity_alias: fn(Int) -> Int = int_identity +const fun_tuple: #(fn(Float) -> String, fn(Int) -> String) = #(float.to_string, int.to_string) -------------------------------------------------------------------------------- @@ -206,7 +209,41 @@ const a: option.Option(String) = option.Some("Hello, World!") arguments: (arguments (argument value: (string - (quoted_content))))))) + (quoted_content)))))) + (constant + name: (identifier) + value: (identifier)) + (constant + name: (identifier) + type: (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + value: (identifier)) + (constant + name: (identifier) + type: (tuple_type + (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier)))) + value: (tuple + (field_access + record: (identifier) + field: (label)) + (field_access + record: (identifier) + field: (label))))) ================================================================================ Public constants @@ -386,3 +423,43 @@ pub const a = uri.Uri(host: "github.com") label: (label) value: (string (quoted_content))))))) + +================================================================================ +Scientific notation +================================================================================ + +const a = 0.0e0 +const a = 1.0e123_456 +const a = -100.001e-1_230 + +-------------------------------------------------------------------------------- + +(source_file + (constant + (identifier) + (float)) + (constant + (identifier) + (float)) + (constant + (identifier) + (float))) + +================================================================================ +Constant with shorthand labels +================================================================================ + +const b = Wibble(arg:, arg:) + +-------------------------------------------------------------------------------- + +(source_file + (constant + (identifier) + (record + (constructor_name) + (arguments + (argument + (label)) + (argument + (label)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt index a70a35fdb..4d0cc9ea0 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/custom_types.txt @@ -247,3 +247,26 @@ pub opaque type Animal(name, cuteness) { label: (label) value: (type name: (type_identifier)))))))) + +================================================================================ +Record update with shorthand labels +================================================================================ + +Wibble(..wibble, arg:, arg:, arg: todo as "no shorthand") + +-------------------------------------------------------------------------------- + +(source_file + (record_update + (constructor_name) + (identifier) + (record_update_arguments + (record_update_argument + (label)) + (record_update_argument + (label)) + (record_update_argument + (label) + (todo + (string + (quoted_content))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt index f1c64dd7c..6d6920edb 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/destructuring.txt @@ -16,7 +16,7 @@ pub fn main() { (visibility_modifier) (identifier) (function_parameters) - (function_body + (block (case (case_subjects (identifier)) @@ -48,3 +48,31 @@ pub fn main() { (argument (string (quoted_content))))))))))) + +================================================================================ +Pattern with label shorthand +================================================================================ + +pub fn main() { + let Wibble(arg1:, arg2:) = todo as "a" +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (let + (record_pattern + (constructor_name) + (record_pattern_arguments + (record_pattern_argument + (label)) + (record_pattern_argument + (label)))) + (todo + (string + (quoted_content))))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt new file mode 100644 index 000000000..f3e9f9918 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/echo.txt @@ -0,0 +1,112 @@ +================================================================================ +Echo with expression +================================================================================ + +pub fn main() { + echo 1 +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (echo + (integer))))) + +================================================================================ +Echo in pipeline +================================================================================ + +pub fn main() { + [] + |> echo + |> panic +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (binary_expression + (binary_expression + (list) + (pipeline_echo)) + (panic))))) + +================================================================================ +Echo last in pipeline +================================================================================ + +pub fn main() { + [] + |> echo + + 1 +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (binary_expression + (list) + (pipeline_echo)) + (integer)))) + +================================================================================ +Echo precedence with pipes +================================================================================ + +pub fn main() { + echo 1 |> 2 + 3 +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (echo + (binary_expression + (integer) + (integer))) + (integer)))) + +================================================================================ +Echo precedence with binop +================================================================================ + +pub fn main() { + echo 1 + 2 + 3 +} + +-------------------------------------------------------------------------------- + +(source_file + (function + (visibility_modifier) + (identifier) + (function_parameters) + (block + (echo + (binary_expression + (integer) + (integer))) + (integer)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt index 5e8466c1e..c8c32c169 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/expressions.txt @@ -22,7 +22,7 @@ Bit-string expression (bit_string_segment_option))))) ================================================================================ -Negation +Boolean Negation ================================================================================ !False @@ -31,12 +31,149 @@ True && !False -------------------------------------------------------------------------------- (source_file - (negation + (boolean_negation (record (constructor_name))) (binary_expression (record (constructor_name)) - (negation + (boolean_negation (record (constructor_name))))) + +================================================================================ +Integer Negation +================================================================================ + +{-x} +{-{5*30}} +{-my_fun()} + +-------------------------------------------------------------------------------- + +(source_file + (block + (integer_negation + (identifier))) + (block + (integer_negation + (block + (binary_expression + (integer) + (integer))))) + (block + (integer_negation + (function_call + (identifier) + (arguments))))) + +================================================================================ +Concatenation +================================================================================ + +let concat = "a" <> "b" + +case "12345" { + "0" <> rest -> rest + "12" <> "34" <> "5" -> "match" + _ -> "" +} + +-------------------------------------------------------------------------------- + +(source_file + (let + (identifier) + (binary_expression + (string + (quoted_content)) + (string + (quoted_content)))) + (case + (case_subjects + (string + (quoted_content))) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (binary_expression + (string + (quoted_content)) + (identifier)))) + (identifier)) + (case_clause + (case_clause_patterns + (case_clause_pattern + (binary_expression + (binary_expression + (string + (quoted_content)) + (string + (quoted_content))) + (string + (quoted_content))))) + (string + (quoted_content))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (discard))) + (string))))) + +================================================================================ +Todo and panic 'as' with string expressions +================================================================================ + +todo as { "Hello, " <> "world!" } +panic as { "Hello, " <> "world!" } + +-------------------------------------------------------------------------------- + +(source_file + (todo + (block + (binary_expression + (string + (quoted_content)) + (string + (quoted_content))))) + (panic + (block + (binary_expression + (string + (quoted_content)) + (string + (quoted_content)))))) + +================================================================================ +Todo and panic in function application style +================================================================================ + +todo("don't panic") +panic("aaaah!") + +-------------------------------------------------------------------------------- + +(source_file + (todo + (string + (quoted_content))) + (panic + (string + (quoted_content)))) + +================================================================================ +Nested field access +================================================================================ + +config.connection.host + +-------------------------------------------------------------------------------- + +(source_file + (field_access + (field_access + (identifier) + (label)) + (label))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt index e7c805cd5..194750adf 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/external_functions.txt @@ -136,3 +136,40 @@ pub external fn a() -> #(List(Int), fn(Int) -> String) = "x" "y" (quoted_content)) (string (quoted_content))))) + +================================================================================ +External function with attribute syntax +================================================================================ + +@external(erlang, "erlang", "integer_to_list") +fn integer_to_list(int int: Int, base base: Int) -> String + +--- + +(source_file + (attribute + (identifier) + (arguments + (attribute_value + (identifier)) + (attribute_value + (string + (quoted_content))) + (attribute_value + (string + (quoted_content))))) + (function + (identifier) + (function_parameters + (function_parameter + (label) + (identifier) + (type + (type_identifier))) + (function_parameter + (label) + (identifier) + (type + (type_identifier)))) + (type + (type_identifier)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt index 3d6cc9576..ffb3958f1 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/external_types.txt @@ -2,9 +2,9 @@ External types ================================================================================ -external type IODevice -external type IODevice() -external type Map(key, value) +type IODevice +type IODevice() +type Map(key, value) -------------------------------------------------------------------------------- @@ -27,9 +27,9 @@ external type Map(key, value) Public external types ================================================================================ -pub external type IODevice -pub external type IODevice() -pub external type Map(key, value) +pub type IODevice +pub type IODevice() +pub type Map(key, value) -------------------------------------------------------------------------------- diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt index 6d5ad7b00..9c9bced21 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/functions.txt @@ -35,7 +35,7 @@ fn replace( name: (type_identifier)))) return_type: (type name: (type_identifier)) - body: (function_body + body: (block (binary_expression left: (identifier) right: (identifier)))) @@ -52,7 +52,7 @@ fn replace( name: (identifier) type: (type_var))) return_type: (type_var) - body: (function_body + body: (block (function_call function: (identifier) arguments: (arguments @@ -67,7 +67,7 @@ fn replace( parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (identifier))) (function name: (identifier) @@ -87,7 +87,7 @@ fn replace( name: (identifier) type: (type name: (type_identifier)))) - body: (function_body + body: (block (function_call function: (field_access record: (identifier) @@ -141,7 +141,7 @@ pub fn replace( name: (type_identifier)))) return_type: (type name: (type_identifier)) - body: (function_body + body: (block (binary_expression left: (identifier) right: (identifier)))) @@ -159,7 +159,7 @@ pub fn replace( name: (identifier) type: (type_var))) return_type: (type_var) - body: (function_body + body: (block (function_call function: (identifier) arguments: (arguments @@ -175,7 +175,7 @@ pub fn replace( parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (identifier))) (function (visibility_modifier) @@ -196,7 +196,7 @@ pub fn replace( name: (identifier) type: (type name: (type_identifier)))) - body: (function_body + body: (block (function_call function: (field_access record: (identifier) @@ -216,6 +216,7 @@ pub fn replace( Basic functions ================================================================================ +fn unfinished() {} fn str() { "Hello, World!" } @@ -238,7 +239,11 @@ fn funcall() { myfun() } fn unfinished() { - todo("Finish me!") + todo as "Finish me!" +} +fn do_panic() { + panic + panic as "aaaah!" } fn tuple(x) { #(x, 1) @@ -252,7 +257,7 @@ fn bit_string() { fn return_fun(x) { fn(y: Int) { x + y } } -fn expression_group() { +fn block() { { 1 + 1 "Hello, World!" @@ -264,6 +269,17 @@ fn foob(x, y) { _else -> False } } +fn assert_assignment() { + let assert Ok(a) = Ok(1) + let assert x = { + 1 + 1 + "Hello, World!" + } + let assert y = x + let assert #(x, _) = #(1, 2) + let assert Ok(_) = Ok(10) as "This never fails" + let assert 10 = 11 as { "message1" <> "message2" } +} fn assignment() { let x = { 1 + 1 @@ -272,13 +288,15 @@ fn assignment() { let y = x let #(x, _) = #(1, 2) } -fn assertations() { - assert x = { - 1 + 1 - "Hello, World!" - } - assert y = x - assert #(x, _) = #(1, 2) +fn assertions() { + assert True && False + assert add(1, 2) == 3 + assert !some_value + assert { + 10 + 11 + } != 10 + assert result.is_ok(Ok(10)) } fn update(x) { Cat(..x, name: "Nubi", cuteness: 1000 + 1001) @@ -297,23 +315,27 @@ fn field_access(x) { (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block)) + (function + name: (identifier) + parameters: (function_parameters) + body: (block (string (quoted_content)))) (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (integer))) (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (float))) (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (record name: (constructor_name) arguments: (arguments @@ -324,7 +346,7 @@ fn field_access(x) { (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (record name: (remote_constructor_name module: (identifier) @@ -339,28 +361,36 @@ fn field_access(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (identifier))) (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (function_call function: (identifier) arguments: (arguments)))) (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (todo message: (string (quoted_content))))) + (function + name: (identifier) + parameters: (function_parameters) + body: (block + (panic) + (panic + message: (string + (quoted_content))))) (function name: (identifier) parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (tuple (identifier) (integer)))) @@ -369,7 +399,7 @@ fn field_access(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (list (integer) (integer) @@ -377,7 +407,7 @@ fn field_access(x) { (function name: (identifier) parameters: (function_parameters) - body: (function_body + body: (block (bit_string (bit_string_segment value: (integer) @@ -396,22 +426,22 @@ fn field_access(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (anonymous_function parameters: (function_parameters (function_parameter name: (identifier) type: (type name: (type_identifier)))) - body: (function_body + body: (block (binary_expression left: (identifier) right: (identifier)))))) (function name: (identifier) parameters: (function_parameters) - body: (function_body - (expression_group + body: (block + (block (binary_expression left: (integer) right: (integer)) @@ -424,7 +454,7 @@ fn field_access(x) { name: (identifier)) (function_parameter name: (identifier))) - body: (function_body + body: (block (case subjects: (case_subjects (identifier) @@ -449,53 +479,127 @@ fn field_access(x) { (function name: (identifier) parameters: (function_parameters) - body: (function_body - (let + body: (block + (let_assert + pattern: (record_pattern + name: (constructor_name) + arguments: (record_pattern_arguments + (record_pattern_argument + pattern: (identifier)))) + value: (record + name: (constructor_name) + arguments: (arguments + (argument + value: (integer))))) + (let_assert pattern: (identifier) - value: (expression_group + value: (block (binary_expression left: (integer) right: (integer)) (string (quoted_content)))) - (let + (let_assert pattern: (identifier) value: (identifier)) - (let + (let_assert pattern: (tuple_pattern (identifier) (discard)) value: (tuple (integer) - (integer))))) + (integer))) + (let_assert + pattern: (record_pattern + name: (constructor_name) + arguments: (record_pattern_arguments + (record_pattern_argument + pattern: (discard)))) + value: (record + name: (constructor_name) + arguments: (arguments + (argument + value: (integer)))) + message: (string + (quoted_content))) + (let_assert + pattern: (integer) + value: (integer) + message: (block + (binary_expression + left: (string + (quoted_content)) + right: (string + (quoted_content))))))) (function name: (identifier) parameters: (function_parameters) - body: (function_body - (assert + body: (block + (let pattern: (identifier) - value: (expression_group + value: (block (binary_expression left: (integer) right: (integer)) (string (quoted_content)))) - (assert + (let pattern: (identifier) value: (identifier)) - (assert + (let pattern: (tuple_pattern (identifier) (discard)) value: (tuple (integer) (integer))))) + (function + name: (identifier) + parameters: (function_parameters) + body: (block + (assert + value: (binary_expression + left: (record + name: (constructor_name)) + right: (record + name: (constructor_name)))) + (assert + value: (binary_expression + left: (function_call + function: (identifier) + arguments: (arguments + (argument + value: (integer)) + (argument + value: (integer)))) + right: (integer))) + (assert + value: (boolean_negation + (identifier))) + (assert + value: (binary_expression + left: (block + (integer) + (integer)) + right: (integer))) + (assert + value: (function_call + function: (field_access + record: (identifier) + field: (label)) + arguments: (arguments + (argument + value: (record + name: (constructor_name) + arguments: (arguments + (argument + value: (integer)))))))))) (function name: (identifier) parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (record_update constructor: (constructor_name) spread: (identifier) @@ -529,7 +633,7 @@ fn field_access(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (tuple_access tuple: (identifier) index: (integer)))) @@ -538,7 +642,7 @@ fn field_access(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (field_access record: (identifier) field: (label))))) @@ -582,7 +686,7 @@ fn trial(x, y, z) { name: (identifier)) (function_parameter name: (identifier))) - body: (function_body + body: (block (case subjects: (case_subjects (identifier)) @@ -697,84 +801,34 @@ fn trial(x, y, z) { name: (constructor_name)))))))) ================================================================================ -Try patterns +Let expressions ================================================================================ -fn try_try_again(x, y) -> Int { - try int_x = todo - try _who_cares = todo - try file.IODevice() = todo - try Node = todo - try "hello" = todo - try 1 = todo - try 12.34 = todo - try #(a, b) = todo - try <> = todo - try [a, b] = todo -} +let foo: fn(Int) -> Int = fn(x) { x } +let fun_ref = float.to_string -------------------------------------------------------------------------------- (source_file - (function - name: (identifier) - parameters: (function_parameters - (function_parameter - name: (identifier)) - (function_parameter - name: (identifier))) - return_type: (type - name: (type_identifier)) - body: (function_body - (try - pattern: (identifier) - value: (todo)) - (try - pattern: (discard) - value: (todo)) - (try - pattern: (record_pattern - name: (remote_constructor_name - module: (identifier) - name: (constructor_name)) - arguments: (record_pattern_arguments)) - value: (todo)) - (try - pattern: (record_pattern - name: (constructor_name)) - value: (todo)) - (try - pattern: (string - (quoted_content)) - value: (todo)) - (try - pattern: (integer) - value: (todo)) - (try - pattern: (float) - value: (todo)) - (try - pattern: (tuple_pattern - (identifier) - (identifier)) - value: (todo)) - (try - pattern: (bit_string_pattern - (bit_string_segment - value: (identifier) - options: (bit_string_segment_options - (bit_string_segment_option))) - (bit_string_segment - value: (identifier) - options: (bit_string_segment_options - (bit_string_segment_option - (integer))))) - value: (todo)) - (try - pattern: (list_pattern - (identifier) - (identifier)) - value: (todo))))) + (let + pattern: (identifier) + type: (function_type + parameter_types: (function_parameter_types + (type + name: (type_identifier))) + return_type: (type + name: (type_identifier))) + value: (anonymous_function + parameters: (function_parameters + (function_parameter + name: (identifier))) + body: (block + (identifier)))) + (let + pattern: (identifier) + value: (field_access + record: (identifier) + field: (label)))) ================================================================================ Complex binary expressions @@ -794,7 +848,7 @@ fn complicated(x, y) { name: (identifier)) (function_parameter name: (identifier))) - body: (function_body + body: (block (binary_expression left: (binary_expression left: (binary_expression @@ -838,7 +892,7 @@ fn complex_data_fun(x, y) { name: (identifier)) (function_parameter name: (identifier))) - body: (function_body + body: (block (field_access record: (tuple_access tuple: (field_access @@ -906,7 +960,7 @@ fn weird(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (function_call function: (identifier) arguments: (arguments @@ -919,7 +973,7 @@ fn weird(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (binary_expression left: (identifier) right: (integer)))) @@ -927,14 +981,14 @@ fn weird(x) { (argument value: (integer)))) (function_call - function: (expression_group + function: (block (let pattern: (identifier) value: (anonymous_function parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (binary_expression left: (identifier) right: (integer)))))) @@ -954,7 +1008,7 @@ fn weird(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (binary_expression left: (identifier) right: (integer))))))) @@ -990,7 +1044,7 @@ fn ignores(foo, _bar) { name: (identifier)) (function_parameter name: (discard))) - body: (function_body + body: (block (let pattern: (discard) value: (integer)) @@ -1021,7 +1075,7 @@ fn lists(x) { parameters: (function_parameters (function_parameter name: (identifier))) - body: (function_body + body: (block (list) (list (integer)) @@ -1048,5 +1102,22 @@ io.println("// hello world!\n") arguments: (arguments (argument value: (string - (quoted_content) - (escape_sequence)))))) + (quoted_content) + (escape_sequence)))))) + +================================================================================ +Call with label shorthand +================================================================================ + +wibble(arg1:, arg2:) + +-------------------------------------------------------------------------------- + +(source_file + (function_call + (identifier) + (arguments + (argument + (label)) + (argument + (label))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt new file mode 100644 index 000000000..17fad1e69 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/guard_expressions.txt @@ -0,0 +1,73 @@ +================================================================================ +Guard Expressions +================================================================================ + +case value { + n if n + 1 > 10 -> True + n if n / 2 < 5 -> False +} + +case value { + n if n -. 1.0 <. 10.0 -> True + n if n *. 2 >. 5 -> False +} + +-------------------------------------------------------------------------------- + +(source_file + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (identifier))) + (case_clause_guard + (binary_expression + (binary_expression + (identifier) + (integer)) + (integer))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (identifier))) + (case_clause_guard + (binary_expression + (binary_expression + (identifier) + (integer)) + (integer))) + (record + (constructor_name))))) + (case + (case_subjects + (identifier)) + (case_clauses + (case_clause + (case_clause_patterns + (case_clause_pattern + (identifier))) + (case_clause_guard + (binary_expression + (binary_expression + (identifier) + (float)) + (float))) + (record + (constructor_name))) + (case_clause + (case_clause_patterns + (case_clause_pattern + (identifier))) + (case_clause_guard + (binary_expression + (binary_expression + (identifier) + (integer)) + (integer))) + (record + (constructor_name)))))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt index d9afc96dc..f141ec741 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/imports.txt @@ -21,6 +21,7 @@ import a.{b} import a/b.{c, d} import a/b.{c as d, e} import a/b.{c, D as E} +import a/b.{A as B, type C as D} -------------------------------------------------------------------------------- @@ -50,6 +51,15 @@ import a/b.{c, D as E} imports: (unqualified_imports (unqualified_import name: (identifier)) + (unqualified_import + name: (constructor_name) + alias: (constructor_name)))) + (import + module: (module) + imports: (unqualified_imports + (unqualified_import + name: (constructor_name) + alias: (constructor_name)) (unqualified_import name: (type_identifier) alias: (type_identifier))))) @@ -61,6 +71,7 @@ Aliased imports import a/b.{c as d} as e import animal/cat as kitty import animal.{Cat as Kitty} as a +import animal.{type Cat as Kitty} as a import animal.{} -------------------------------------------------------------------------------- @@ -76,6 +87,13 @@ import animal.{} (import module: (module) alias: (identifier)) + (import + module: (module) + imports: (unqualified_imports + (unqualified_import + name: (constructor_name) + alias: (constructor_name))) + alias: (identifier)) (import module: (module) imports: (unqualified_imports @@ -86,3 +104,41 @@ import animal.{} (import module: (module) imports: (unqualified_imports))) + +================================================================================ +Type imports +================================================================================ + +import a/b.{type C} +import animal.{type Cat as Kitty} + +-------------------------------------------------------------------------------- + +(source_file + (import + module: (module) + imports: (unqualified_imports + (unqualified_import + name: (type_identifier)))) + (import + module: (module) + imports: (unqualified_imports + (unqualified_import + name: (type_identifier) + alias: (type_identifier))))) + +================================================================================ +Discard module imports +================================================================================ + +import wibble.{wobble} as _ + +-------------------------------------------------------------------------------- + +(source_file + (import + (module) + (unqualified_imports + (unqualified_import + (identifier))) + (discard))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt new file mode 100644 index 000000000..0b958ff80 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/statements.txt @@ -0,0 +1,59 @@ +================================================================================ +Use +================================================================================ + +use <- f() + +use a <- f() + +use a, b, c, d, e <- f() + +use #(a, b) <- blah + +use x : OfType <- f() + +-------------------------------------------------------------------------------- + +(source_file + (use + (function_call + (identifier) + (arguments))) + (use + (use_assignments + (use_assignment + (identifier))) + (function_call + (identifier) + (arguments))) + (use + (use_assignments + (use_assignment + (identifier)) + (use_assignment + (identifier)) + (use_assignment + (identifier)) + (use_assignment + (identifier)) + (use_assignment + (identifier))) + (function_call + (identifier) + (arguments))) + (use + (use_assignments + (use_assignment + (tuple_pattern + (identifier) + (identifier)))) + (identifier)) + (use + (use_assignments + (use_assignment + (identifier) + (type + (type_identifier)))) + (function_call + (identifier) + (arguments)))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt new file mode 100644 index 000000000..5d9529fc4 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/strings.txt @@ -0,0 +1,38 @@ +================================================================================ +Escape sequences +================================================================================ + +"\t\t\r\nHello, CRLF!" +"¯\\_(ツ)_/¯" +"\"\"" +"Hello, \e\f" +// 🏴‍☠️ is 🏴 and ☠️ joined with a zero-width joiner (U+200D) +"🏴‍☠️ == \u{1F3F4}\u{200D}\u{2620}\u{FE0F}" + +-------------------------------------------------------------------------------- + +(source_file + (string + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (quoted_content)) + (string + (quoted_content) + (escape_sequence) + (quoted_content)) + (string + (escape_sequence) + (escape_sequence)) + (string + (quoted_content) + (escape_sequence) + (escape_sequence)) + (comment) + (string + (quoted_content) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence))) diff --git a/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt b/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt index 2681b8043..6ce6f818b 100644 --- a/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt +++ b/vendored_parsers/tree-sitter-gleam/test/corpus/whole_files.txt @@ -48,7 +48,7 @@ if javascript { name: (type_identifier)))) return_type: (type name: (type_identifier)) - body: (function_body + body: (block (let pattern: (identifier) value: (function_call @@ -161,7 +161,7 @@ pub fn negate(bool: Bool) -> Bool { module: (module) imports: (unqualified_imports (unqualified_import - name: (type_identifier)))) + name: (constructor_name)))) (statement_comment) (statement_comment) (statement_comment) @@ -184,7 +184,7 @@ pub fn negate(bool: Bool) -> Bool { name: (type_identifier)))) return_type: (type name: (type_identifier)) - body: (function_body + body: (block (case subjects: (case_subjects (identifier)) @@ -234,7 +234,7 @@ fn foo(a,) { (module) (unqualified_imports (unqualified_import - (type_identifier)))) + (constructor_name)))) (constant (identifier) (tuple_type @@ -290,7 +290,7 @@ fn foo(a,) { (function_parameters (function_parameter (identifier))) - (function_body + (block (function_call (identifier) (arguments diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam new file mode 100644 index 000000000..005259c2d --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/cases.gleam @@ -0,0 +1,11 @@ +pub fn case_with_remainder() { + case todo { + _ if 1 % 2 == 0 -> todo + // ^ number + // ^ operator + // ^ number + // ^ operator + // ^ number + _ -> todo + } +} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam new file mode 100644 index 000000000..c0f81cb77 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/constants.gleam @@ -0,0 +1,10 @@ +const f = 100.001e523 +// ^ number +// ^ number +// ^ number + +const s = "Hello, \e\t\n" +// ^ warning +// ^ warning +// ^ string.escape +// ^ string.escape diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam index 7c6c597b1..d7b673745 100644 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/destructuring.gleam @@ -2,8 +2,8 @@ fn case_case(x: Option(String)) { // ^ variable.parameter // ^ type case #(x, x) { - // ^ variable.parameter - // ^ variable.parameter + // ^ variable.parameter + // ^ variable.parameter #(None, None) -> None // ^ constructor // ^ constructor @@ -22,3 +22,11 @@ fn case_case(x: Option(String)) { z.foo() // <- module } + +fn shorthand_label_pattern_arg() { + case todo { + Wibble(arg1:, arg2:) -> todo + // ^ property + // ^ property + } +} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam new file mode 100644 index 000000000..51df78dca --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/echo.gleam @@ -0,0 +1,4 @@ +pub fn main() { + echo 2 + // ^ keyword +} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam new file mode 100644 index 000000000..eb3090147 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/expressions.gleam @@ -0,0 +1,16 @@ +case "12345" { + "123" <> rest -> rest + // <- string + // ^ operator + // ^ variable + _ -> "" + // ^ string +} + + -x +// ^ operator +// ^ variable +panic as "aaah!" +// <- keyword +// ^ keyword +// ^ string diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam index 565157691..843efe283 100644 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/functions.gleam @@ -108,3 +108,22 @@ fn comment_string_test() { // ^ function // ^ string } + +fn let_assert_test() { + let assert #(x, _) = #(1, 2) + // <- keyword + // ^ keyword +} + +fn assert_test() { + assert x == add(1, 4) + // <- keyword + // ^ function +} + +fn punned_call_arg_test() { + wibble(arg:, arg2:) + // ^ function + // ^ property + // ^ property +} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam index d9d191fe7..a10336957 100644 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/modules.gleam @@ -6,6 +6,16 @@ import animal/cat as kitty // ^ module // ^ module +import animal/cat.{Cat, type Cat} +// ^ constructor +// ^ keyword +// ^ type + +import wibble.{wobble} as _ +// ^ module +// ^ function +// ^ comment.unused + pub fn main() { io.println("hello world") // <- module @@ -48,3 +58,27 @@ fn make_cat() -> kitty.Cat { // ^ module // ^ constructor } + +@target(erlang) +// <- attribute +// ^ attribute +// ^ constant +pub external fn display() -> Bool = "erlang" "display" + +@target(erlang) +@external(erlang, "wobble", "main") +// <- attribute +// ^ attribute +// ^ constant +// ^ string +// string +pub fn main() -> Int + +@deprecated(since: "1.2.0", replacement: wobble) +// <- attribute +// ^ attribute +// ^ property +// ^ string +// ^ property +// ^constant +pub fn wibble() { todo } diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam index 252fac0ee..4cf8c9a5e 100644 --- a/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/records.gleam @@ -12,3 +12,17 @@ pub fn new(name: String) { // ^ property // ^ variable.parameter } + +pub fn access() { + let config = Config() + config.connection.host + // ^ variable + // ^ property + // ^ property +} + +pub fn record_update_shorthand_label() { + User(..user, name:) + // ^ constructor + // ^ property +} diff --git a/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam b/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam new file mode 100644 index 000000000..c2b23b964 --- /dev/null +++ b/vendored_parsers/tree-sitter-gleam/test/highlight/reserved.gleam @@ -0,0 +1,14 @@ +auto +// <- error +delegate +// <- error +derive +// <- error +else +// <- error +implement +// <- error +macro +// <- error +test +// <- error diff --git a/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam b/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam index e6fad70b5..2c080fb75 100644 --- a/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam +++ b/vendored_parsers/tree-sitter-gleam/test/tags/frame.gleam @@ -1,8 +1,8 @@ -import gleam/option.{Option, Some, None} +import gleam/option.{type Option, Some, None} // ^ reference.module -// ^ reference.type -// ^ reference.type -// ^ reference.type +// ^ reference.type +// ^ reference.constructor +// ^ reference.constructor import gleam/bit_builder // ^ reference.module